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 0feac4a0f66c3e25026959d8efd9372ffdefde74 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:13:16 +0000 Subject: [PATCH 10/17] Updated markdown help --- .../Clear-MgDeviceManagementManagedDevice.md | 62 +--- ...MgDeviceManagementManagedDeviceLostMode.md | 48 +-- .../Find-MgDeviceManagementManagedDevice.md | 48 +-- .../Get-MgAdminEdge.md | 42 +-- .../Get-MgAdminEdgeInternetExplorerMode.md | 42 +-- ...MgAdminEdgeInternetExplorerModeSiteList.md | 56 +-- ...inEdgeInternetExplorerModeSiteListCount.md | 46 +-- ...nternetExplorerModeSiteListSharedCookie.md | 55 +-- ...etExplorerModeSiteListSharedCookieCount.md | 50 +-- ...minEdgeInternetExplorerModeSiteListSite.md | 55 +-- ...geInternetExplorerModeSiteListSiteCount.md | 50 +-- .../Get-MgDeviceManagement.md | 46 +-- .../Get-MgDeviceManagementDetectedApp.md | 52 +-- .../Get-MgDeviceManagementDetectedAppCount.md | 46 +-- ...eviceManagementDetectedAppManagedDevice.md | 53 +-- ...ManagementDetectedAppManagedDeviceCount.md | 50 +-- .../Get-MgDeviceManagementDeviceCategory.md | 52 +-- ...t-MgDeviceManagementDeviceCategoryCount.md | 46 +-- ...gDeviceManagementDeviceCompliancePolicy.md | 52 +-- ...agementDeviceCompliancePolicyAssignment.md | 51 +-- ...ntDeviceCompliancePolicyAssignmentCount.md | 50 +-- ...ceManagementDeviceCompliancePolicyCount.md | 46 +-- ...mpliancePolicyDeviceSettingStateSummary.md | 53 +-- ...ncePolicyDeviceSettingStateSummaryCount.md | 50 +-- ...eviceCompliancePolicyDeviceStateSummary.md | 46 +-- ...ementDeviceCompliancePolicyDeviceStatus.md | 51 +-- ...DeviceCompliancePolicyDeviceStatusCount.md | 50 +-- ...iceCompliancePolicyDeviceStatusOverview.md | 50 +-- ...eCompliancePolicyScheduledActionForRule.md | 52 +-- ...liancePolicyScheduledActionForRuleCount.md | 50 +-- ...tionForRuleScheduledActionConfiguration.md | 51 +-- ...orRuleScheduledActionConfigurationCount.md | 50 +-- ...viceCompliancePolicySettingStateSummary.md | 52 +-- ...ompliancePolicySettingStateSummaryCount.md | 46 +-- ...tateSummaryDeviceComplianceSettingState.md | 52 +-- ...ummaryDeviceComplianceSettingStateCount.md | 50 +-- ...agementDeviceCompliancePolicyUserStatus.md | 51 +-- ...ntDeviceCompliancePolicyUserStatusCount.md | 50 +-- ...eviceCompliancePolicyUserStatusOverview.md | 50 +-- ...t-MgDeviceManagementDeviceConfiguration.md | 52 +-- ...ManagementDeviceConfigurationAssignment.md | 51 +-- ...ementDeviceConfigurationAssignmentCount.md | 50 +-- ...eviceManagementDeviceConfigurationCount.md | 46 +-- ...eConfigurationDeviceSettingStateSummary.md | 51 +-- ...igurationDeviceSettingStateSummaryCount.md | 50 +-- ...ntDeviceConfigurationDeviceStateSummary.md | 46 +-- ...nagementDeviceConfigurationDeviceStatus.md | 51 +-- ...entDeviceConfigurationDeviceStatusCount.md | 50 +-- ...DeviceConfigurationDeviceStatusOverview.md | 50 +-- ...ceConfigurationOmaSettingPlainTextValue.md | 50 +-- ...ManagementDeviceConfigurationUserStatus.md | 51 +-- ...ementDeviceConfigurationUserStatusCount.md | 50 +-- ...ntDeviceConfigurationUserStatusOverview.md | 50 +-- .../Get-MgDeviceManagementManagedDevice.md | 53 +-- ...MgDeviceManagementManagedDeviceCategory.md | 46 +-- ...iceManagementManagedDeviceCategoryByRef.md | 46 +-- ...ementManagedDeviceCompliancePolicyState.md | 48 +-- ...ManagedDeviceCompliancePolicyStateCount.md | 46 +-- ...nagementManagedDeviceConfigurationState.md | 48 +-- ...entManagedDeviceConfigurationStateCount.md | 46 +-- ...et-MgDeviceManagementManagedDeviceCount.md | 46 +-- ...gementManagedDeviceLogCollectionRequest.md | 47 +-- ...tManagedDeviceLogCollectionRequestCount.md | 46 +-- ...MgDeviceManagementManagedDeviceOverview.md | 46 +-- ...Get-MgDeviceManagementManagedDeviceUser.md | 42 +-- ...mentManagedDeviceWindowsProtectionState.md | 46 +-- ...dowsProtectionStateDetectedMalwareState.md | 48 +-- ...rotectionStateDetectedMalwareStateCount.md | 46 +-- ...ManagementMobileAppTroubleshootingEvent.md | 52 +-- ...bleshootingEventAppLogCollectionRequest.md | 52 +-- ...ootingEventAppLogCollectionRequestCount.md | 50 +-- ...ementMobileAppTroubleshootingEventCount.md | 46 +-- ...ceManagementNotificationMessageTemplate.md | 52 +-- ...agementNotificationMessageTemplateCount.md | 46 +-- ...ageTemplateLocalizedNotificationMessage.md | 52 +-- ...mplateLocalizedNotificationMessageCount.md | 50 +-- ...ceManagementSoftwareUpdateStatusSummary.md | 46 +-- ...-MgDeviceManagementTroubleshootingEvent.md | 53 +-- ...viceManagementTroubleshootingEventCount.md | 46 +-- ...InformationProtectionAppLearningSummary.md | 52 +-- ...mationProtectionAppLearningSummaryCount.md | 46 +-- ...rmationProtectionNetworkLearningSummary.md | 51 +-- ...onProtectionNetworkLearningSummaryCount.md | 46 +-- ...viceManagementWindowsMalwareInformation.md | 52 +-- ...anagementWindowsMalwareInformationCount.md | 46 +-- ...owsMalwareInformationDeviceMalwareState.md | 52 +-- ...lwareInformationDeviceMalwareStateCount.md | 50 +-- ...iceManagementManagedDeviceWindowsDevice.md | 56 +-- ...MgDownDeviceManagementManagedDeviceShut.md | 48 +-- ...anagedDeviceSharedAppleDeviceActiveUser.md | 48 +-- ...e-MgRetireDeviceManagementManagedDevice.md | 48 +-- ...eManagementManagedDeviceWindowsDefender.md | 56 +-- ...mentDeviceCompliancePolicyActionForRule.md | 56 +-- ...k-MgDeviceManagementManagedDeviceRemote.md | 48 +-- .../Microsoft.Graph.DeviceManagement.md | 21 +- ...MgAdminEdgeInternetExplorerModeSiteList.md | 54 +-- ...nternetExplorerModeSiteListSharedCookie.md | 58 +-- ...minEdgeInternetExplorerModeSiteListSite.md | 60 +--- .../New-MgDeviceManagementDetectedApp.md | 178 +++++---- .../New-MgDeviceManagementDeviceCategory.md | 49 +-- ...gDeviceManagementDeviceCompliancePolicy.md | 53 +-- ...agementDeviceCompliancePolicyAssignment.md | 54 +-- ...mpliancePolicyDeviceSettingStateSummary.md | 52 +-- ...ementDeviceCompliancePolicyDeviceStatus.md | 54 +-- ...eCompliancePolicyScheduledActionForRule.md | 54 +-- ...tionForRuleScheduledActionConfiguration.md | 54 +-- ...viceCompliancePolicySettingStateSummary.md | 50 +-- ...tateSummaryDeviceComplianceSettingState.md | 56 +-- ...agementDeviceCompliancePolicyUserStatus.md | 54 +-- ...w-MgDeviceManagementDeviceConfiguration.md | 53 +-- ...ManagementDeviceConfigurationAssignment.md | 56 +-- ...eConfigurationDeviceSettingStateSummary.md | 54 +-- ...nagementDeviceConfigurationDeviceStatus.md | 54 +-- ...ManagementDeviceConfigurationUserStatus.md | 54 +-- .../New-MgDeviceManagementManagedDevice.md | 187 ++++++---- ...ementManagedDeviceCompliancePolicyState.md | 54 +-- ...nagementManagedDeviceConfigurationState.md | 54 +-- ...edDeviceLogCollectionRequestDownloadUrl.md | 45 +-- ...dowsProtectionStateDetectedMalwareState.md | 48 +-- ...ManagementMobileAppTroubleshootingEvent.md | 50 +-- ...bleshootingEventAppLogCollectionRequest.md | 54 +-- ...EventAppLogCollectionRequestDownloadUrl.md | 49 +-- ...ceManagementNotificationMessageTemplate.md | 49 +-- ...ageTemplateLocalizedNotificationMessage.md | 56 +-- ...-MgDeviceManagementTroubleshootingEvent.md | 49 +-- ...InformationProtectionAppLearningSummary.md | 49 +-- ...rmationProtectionNetworkLearningSummary.md | 48 +-- ...viceManagementWindowsMalwareInformation.md | 50 +-- ...owsMalwareInformationDeviceMalwareState.md | 53 +-- ...MgAdminEdgeInternetExplorerModeSiteList.md | 62 +--- .../Remove-MgAdminEdge.md | 41 +-- .../Remove-MgAdminEdgeInternetExplorerMode.md | 41 +-- ...MgAdminEdgeInternetExplorerModeSiteList.md | 50 +-- ...nternetExplorerModeSiteListSharedCookie.md | 57 +-- ...minEdgeInternetExplorerModeSiteListSite.md | 57 +-- .../Remove-MgDeviceManagementDetectedApp.md | 48 +-- ...Remove-MgDeviceManagementDeviceCategory.md | 48 +-- ...gDeviceManagementDeviceCompliancePolicy.md | 48 +-- ...agementDeviceCompliancePolicyAssignment.md | 48 +-- ...mpliancePolicyDeviceSettingStateSummary.md | 48 +-- ...eviceCompliancePolicyDeviceStateSummary.md | 41 +-- ...ementDeviceCompliancePolicyDeviceStatus.md | 48 +-- ...iceCompliancePolicyDeviceStatusOverview.md | 44 +-- ...eCompliancePolicyScheduledActionForRule.md | 48 +-- ...tionForRuleScheduledActionConfiguration.md | 48 +-- ...viceCompliancePolicySettingStateSummary.md | 48 +-- ...tateSummaryDeviceComplianceSettingState.md | 48 +-- ...agementDeviceCompliancePolicyUserStatus.md | 48 +-- ...eviceCompliancePolicyUserStatusOverview.md | 44 +-- ...e-MgDeviceManagementDeviceConfiguration.md | 48 +-- ...ManagementDeviceConfigurationAssignment.md | 48 +-- ...eConfigurationDeviceSettingStateSummary.md | 48 +-- ...ntDeviceConfigurationDeviceStateSummary.md | 41 +-- ...nagementDeviceConfigurationDeviceStatus.md | 48 +-- ...DeviceConfigurationDeviceStatusOverview.md | 44 +-- ...ManagementDeviceConfigurationUserStatus.md | 48 +-- ...ntDeviceConfigurationUserStatusOverview.md | 44 +-- .../Remove-MgDeviceManagementManagedDevice.md | 48 +-- ...MgDeviceManagementManagedDeviceCategory.md | 44 +-- ...iceManagementManagedDeviceCategoryByRef.md | 44 +-- ...ementManagedDeviceCompliancePolicyState.md | 44 +-- ...nagementManagedDeviceConfigurationState.md | 44 +-- ...gementManagedDeviceLogCollectionRequest.md | 44 +-- ...tManagedDeviceUserFromSharedAppleDevice.md | 56 +-- ...mentManagedDeviceWindowsProtectionState.md | 44 +-- ...dowsProtectionStateDetectedMalwareState.md | 44 +-- ...ManagementMobileAppTroubleshootingEvent.md | 48 +-- ...bleshootingEventAppLogCollectionRequest.md | 48 +-- ...ceManagementNotificationMessageTemplate.md | 48 +-- ...ageTemplateLocalizedNotificationMessage.md | 48 +-- ...-MgDeviceManagementTroubleshootingEvent.md | 48 +-- ...InformationProtectionAppLearningSummary.md | 48 +-- ...rmationProtectionNetworkLearningSummary.md | 48 +-- ...viceManagementWindowsMalwareInformation.md | 48 +-- ...owsMalwareInformationDeviceMalwareState.md | 48 +-- ...ManagementManagedDeviceRemoteAssistance.md | 48 +-- ...MgDeviceManagementManagedDevicePasscode.md | 48 +-- ...tart-MgDeviceManagementManagedDeviceNow.md | 48 +-- ...MgDeviceManagementManagedDevicePasscode.md | 48 +-- ...tNotificationMessageTemplateTestMessage.md | 48 +-- ...gDeviceManagementDeviceCompliancePolicy.md | 58 +-- ...t-MgDeviceManagementDeviceConfiguration.md | 56 +-- ...iceManagementManagedDeviceCategoryByRef.md | 54 +-- ...ceManagementManagedDeviceActivationLock.md | 48 +-- .../Sync-MgDeviceManagementManagedDevice.md | 48 +-- .../Update-MgAdminEdge.md | 48 +-- .../Update-MgAdminEdgeInternetExplorerMode.md | 45 +-- ...MgAdminEdgeInternetExplorerModeSiteList.md | 60 +--- ...nternetExplorerModeSiteListSharedCookie.md | 58 +-- ...minEdgeInternetExplorerModeSiteListSite.md | 59 +-- .../Update-MgDeviceManagement.md | 337 +++++++++++++----- .../Update-MgDeviceManagementDetectedApp.md | 185 ++++++---- ...Update-MgDeviceManagementDeviceCategory.md | 54 +-- ...gDeviceManagementDeviceCompliancePolicy.md | 60 +--- ...agementDeviceCompliancePolicyAssignment.md | 54 +-- ...mpliancePolicyDeviceSettingStateSummary.md | 54 +-- ...eviceCompliancePolicyDeviceStateSummary.md | 48 +-- ...ementDeviceCompliancePolicyDeviceStatus.md | 53 +-- ...iceCompliancePolicyDeviceStatusOverview.md | 53 +-- ...eCompliancePolicyScheduledActionForRule.md | 54 +-- ...tionForRuleScheduledActionConfiguration.md | 53 +-- ...viceCompliancePolicySettingStateSummary.md | 54 +-- ...tateSummaryDeviceComplianceSettingState.md | 56 +-- ...agementDeviceCompliancePolicyUserStatus.md | 53 +-- ...eviceCompliancePolicyUserStatusOverview.md | 55 +-- ...e-MgDeviceManagementDeviceConfiguration.md | 60 +--- ...ManagementDeviceConfigurationAssignment.md | 55 +-- ...eConfigurationDeviceSettingStateSummary.md | 54 +-- ...ntDeviceConfigurationDeviceStateSummary.md | 49 +-- ...nagementDeviceConfigurationDeviceStatus.md | 53 +-- ...DeviceConfigurationDeviceStatusOverview.md | 53 +-- ...ManagementDeviceConfigurationUserStatus.md | 54 +-- ...ntDeviceConfigurationUserStatusOverview.md | 55 +-- .../Update-MgDeviceManagementManagedDevice.md | 197 ++++++---- ...MgDeviceManagementManagedDeviceCategory.md | 50 +-- ...ementManagedDeviceCompliancePolicyState.md | 53 +-- ...nagementManagedDeviceConfigurationState.md | 53 +-- ...gementManagedDeviceLogCollectionRequest.md | 50 +-- ...gementManagedDeviceWindowsDeviceAccount.md | 56 +-- ...mentManagedDeviceWindowsProtectionState.md | 51 +-- ...dowsProtectionStateDetectedMalwareState.md | 49 +-- ...ManagementMobileAppTroubleshootingEvent.md | 56 +-- ...bleshootingEventAppLogCollectionRequest.md | 54 +-- ...ceManagementNotificationMessageTemplate.md | 54 +-- ...ageTemplateLocalizedNotificationMessage.md | 56 +-- ...-MgDeviceManagementTroubleshootingEvent.md | 52 +-- ...InformationProtectionAppLearningSummary.md | 54 +-- ...rmationProtectionNetworkLearningSummary.md | 54 +-- ...viceManagementWindowsMalwareInformation.md | 56 +-- ...owsMalwareInformationDeviceMalwareState.md | 54 +-- 230 files changed, 2731 insertions(+), 9643 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md index 6e20e892bc249..d9692dd1b8e9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/clear-mgdevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: Clear-MgDeviceManagementManagedDevice Wipe a device -> [!NOTE] -> To view the beta release of this cmdlet, view [Clear-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Clear-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### WipeExpanded (Default) @@ -28,7 +25,6 @@ Clear-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeader [-MacOSUnlockCode ] [-PersistEsimDataPlan] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Wipe @@ -39,7 +35,6 @@ Clear-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### WipeViaIdentityExpanded @@ -51,7 +46,6 @@ Clear-MgDeviceManagementManagedDevice -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### WipeViaIdentity @@ -62,7 +56,6 @@ Clear-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,18 +67,9 @@ This cmdlet has the following aliases, Wipe a device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -98,10 +82,6 @@ $params = @{ Clear-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId -BodyParameter $params -``` -This example shows how to use the Clear-MgDeviceManagementManagedDevice Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -133,7 +113,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -295,7 +275,7 @@ HelpMessage: '' ### -KeepEnrollmentData - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -322,7 +302,7 @@ HelpMessage: '' ### -KeepUserData - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -349,7 +329,7 @@ HelpMessage: '' ### -MacOSUnlockCode - +. ```yaml Type: System.String @@ -424,7 +404,7 @@ HelpMessage: '' ### -PersistEsimDataPlan - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -590,14 +570,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeepEnrollmentData ]: [KeepUserData ]: [MacOSUnlockCode ]: [PersistEsimDataPlan ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -635,26 +615,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Clear-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/clear-mgdevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/clear-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md index 6947a19a06d18..5e1f02248ef1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/disable-mgdevicemanagementmanageddevicelostmode Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Disable-MgDeviceManagementManagedDeviceLostMode --- @@ -15,9 +15,6 @@ title: Disable-MgDeviceManagementManagedDeviceLostMode Disable lost mode -> [!NOTE] -> To view the beta release of this cmdlet, view [Disable-MgBetaDeviceManagementManagedDeviceLostMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Disable-MgBetaDeviceManagementManagedDeviceLostMode?view=graph-powershell-beta) - ## SYNTAX ### Disable (Default) @@ -27,7 +24,6 @@ Disable-MgDeviceManagementManagedDeviceLostMode -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DisableViaIdentity @@ -37,7 +33,6 @@ Disable-MgDeviceManagementManagedDeviceLostMode -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Disable lost mode -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Disable-MgDeviceManagementManagedDeviceLostMode -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Disable-MgDeviceManagementManagedDeviceLostMode Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Disable-MgDeviceManagementManagedDeviceLostMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/disable-mgdevicemanagementmanageddevicelostmode) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/disable-mgdevicemanagementmanageddevicelostmode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md index e0dc59d053a9f..0c8451ab71184 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/find-mgdevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Find-MgDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: Find-MgDeviceManagementManagedDevice Locate a device -> [!NOTE] -> To view the beta release of this cmdlet, view [Find-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Find-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### Locate (Default) @@ -27,7 +24,6 @@ Find-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeaders [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### LocateViaIdentity @@ -37,7 +33,6 @@ Find-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Locate a device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Find-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Find-MgDeviceManagementManagedDevice Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Find-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/find-mgdevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/find-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md index caa178c68f5b4..debdc085c97c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedge Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdge --- @@ -16,9 +16,6 @@ title: Get-MgAdminEdge A container for Microsoft Edge resources. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdge](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdge?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgAdminEdge [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -40,6 +37,16 @@ This cmdlet has the following aliases, A container for Microsoft Edge resources. 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-MgAdminEdge](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedge) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedge) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md index 59bc797d9bb67..0974e83a90406 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermode Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdgeInternetExplorerMode --- @@ -15,9 +15,6 @@ title: Get-MgAdminEdgeInternetExplorerMode A container for Internet Explorer mode resources. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerMode?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ A container for Internet Explorer mode resources. Get-MgAdminEdgeInternetExplorerMode [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, A container for Internet Explorer mode resources. +## 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-MgAdminEdgeInternetExplorerMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermode) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md index c066d4ba77739..ffaa62dbb3466 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelist Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdgeInternetExplorerModeSiteList --- @@ -15,9 +15,6 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteList Get a browserSiteList that contains browserSite and browserSharedCookie resources. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteList [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteList [-ExpandProperty ] [-Prope Get-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, Get a browserSiteList that contains browserSite and browserSharedCookie resources. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgAdminEdgeInternetExplorerModeSiteList -``` -This example shows how to use the Get-MgAdminEdgeInternetExplorerModeSiteList 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -578,28 +562,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelist) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelist) +- [](https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md index 92be0270fe3ad..0035ab4204d45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdgeInternetExplorerModeSiteListCount --- @@ -15,9 +15,6 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgAdminEdgeInternetExplorerModeSiteListCount [-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) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgAdminEdgeInternetExplorerModeSiteListCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index dff3a1560d409..21d4b21fde520 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookie Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie --- @@ -15,9 +15,6 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieId < -BrowserSiteListId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -``` -This example shows how to use the Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,28 +590,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [](https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md index 5bf660f42b6ff..b003c02b90c14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookiecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount --- @@ -15,9 +15,6 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount -BrowserSiteListId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount -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) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.Read.All, BrowserSiteLists.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookiecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookiecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md index e9797ffbfa2e6..ccfadc54a6f1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsite Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdgeInternetExplorerModeSiteListSite --- @@ -15,9 +15,6 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSite Get a browserSite that resides on a browserSiteList. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId -Browser [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, Get a browserSite that resides on a browserSiteList. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -``` -This example shows how to use the Get-MgAdminEdgeInternetExplorerModeSiteListSite 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,28 +590,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsite) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsite) +- [](https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md index 7d2dc639c704d..4a162a1df28f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsitecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount --- @@ -15,9 +15,6 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount -BrowserSiteListId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,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) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -380,27 +379,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsitecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsitecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md index db7a252e586ab..682e639e815e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagement Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagement --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagement Get deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagement](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagement?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get deviceManagement Get-MgDeviceManagement [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,27 +35,14 @@ This cmdlet has the following aliases, Get deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementServiceConfig.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementManagedDevices.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagement -``` -This example shows how to use the Get-MgDeviceManagement Cmdlet. - - ## PARAMETERS ### -Break @@ -297,26 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagement) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagement) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md index cd46295d03a32..973c1e79106ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedapp Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDetectedApp --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDetectedApp The list of detected apps associated with a device. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDetectedApp [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementDetectedApp [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementDetectedApp -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, The list of detected apps associated with a device. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDetectedApp -``` -This example shows how to use the Get-MgDeviceManagementDetectedApp 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -578,26 +562,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedapp) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md index 97452f9cf0fa7..9324824f16878 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDetectedAppCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDetectedAppCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedAppCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedAppCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementDetectedAppCount [-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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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-MgDeviceManagementDetectedAppCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md index 184c01907dc57..ed19252c03863 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDetectedAppManagedDevice --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDetectedAppManagedDevice The devices that have the discovered application installed -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedAppManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedAppManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDetectedAppManagedDevice -DetectedAppId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementDetectedAppManagedDevice -DetectedAppId -ManagedD [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementDetectedAppManagedDevice -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,13 +57,15 @@ This cmdlet has the following aliases, The devices that have the discovered application installed -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -555,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,28 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDetectedAppManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevice) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md index 60c664add106c..8c4ff44506fd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevicecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDetectedAppManagedDeviceCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDetectedAppManagedDeviceCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementDetectedAppManagedDeviceCount -DetectedAppId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgDeviceManagementDetectedAppManagedDeviceCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,13 +45,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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -342,7 +341,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -380,27 +379,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDetectedAppManagedDeviceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevicecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevicecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md index 6c2f8920f5131..de410a66f768c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCategory --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCategory The list of device categories with the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDeviceCategory [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCategory [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementDeviceCategory -InputObject [-ExpandProperty ] [-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 categories with the tenant. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCategory -``` -This example shows how to use the Get-MgDeviceManagementDeviceCategory 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -578,26 +562,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategory) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md index 8b3e1a078dd56..8033d6efaf159 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategorycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCategoryCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCategoryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCategoryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCategoryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceCategoryCount [-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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.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-MgDeviceManagementDeviceCategoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategorycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategorycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md index c6dc3e03f7729..3bd099afe95be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicy --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicy The device compliance policies. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDeviceCompliancePolicy [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The device compliance policies. -**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 Get-MgDeviceManagementDeviceCompliancePolicy -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicy 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicy) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 2bedd47581aa4..3d2bcfd36dad8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyAssignment --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyAssignment The collection of assignments for this compliance policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyAs -DeviceCompliancePolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, The collection of assignments for this compliance policy. -**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 Get-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyAssignment 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,26 +590,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md index 8386853510531..919d2603085b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount -DeviceCompliancePol [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md index 8f135e3534d60..e8d971a0555a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceCompliancePolicyCount [-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-MgDeviceManagementDeviceCompliancePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index ca6d6ed1ebd83..31062610af90c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Compliance Setting State Device Summary -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,13 +59,15 @@ This cmdlet has the following aliases, Compliance Setting State Device Summary -**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 @@ -557,7 +556,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -595,28 +594,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md index 9d9490d8e91b1..68a383edb84a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummarycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCoun Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount -DeviceCompliancePolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount -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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummarycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 1842b7797748c..2298576ace4b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary The device compliance state summary for this account. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ The device compliance state summary for this account. Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,27 +35,14 @@ This cmdlet has the following aliases, The device compliance state summary 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 Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Cmdlet. - - ## PARAMETERS ### -Break @@ -297,26 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 76f0487d267ec..d81e1e5a7432d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus List of DeviceComplianceDeviceStatus. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicy [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDevice -DeviceCompliancePolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, List of DeviceComplianceDeviceStatus. -**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 Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,26 +590,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md index 40acb5afbf468..930f3b3832a85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatuscount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount -DeviceComplianceP [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount -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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatuscount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index ccf3983fa7247..b824d9ac119f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Device compliance devices status overview -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -DeviceComplian [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,27 +46,14 @@ This cmdlet has the following aliases, Device compliance devices status overview -**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 Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Cmdlet. - - ## PARAMETERS ### -Break @@ -358,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -396,26 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 21b5524915974..edcdbf5762041 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule --- @@ -16,9 +16,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +48,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,27 +61,14 @@ This cmdlet has the following aliases, The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. -**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 Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Cmdlet. - - ## PARAMETERS ### -All @@ -572,7 +556,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -610,26 +594,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md index a1d6e7149f880..5cd1b4abd86ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount -DeviceCompliancePolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount -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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index bcdd7938e3574..20f45baf1dbf3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration --- @@ -16,9 +16,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSchedul The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -42,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -DeviceComplianceScheduledActionForRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -52,7 +48,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,27 +61,14 @@ This cmdlet has the following aliases, The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. -**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 Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. - - ## PARAMETERS ### -All @@ -600,7 +583,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -638,26 +621,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md index cbdc8be1337ac..69912e6c407b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfigurationcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSchedul Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,13 +47,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 @@ -365,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -403,27 +402,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfigurationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfigurationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index ca71fa22718fd..ab08880859322 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary The summary states of compliance policy settings for this account. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -DeviceCompliancePolicySettingStateSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -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 summary states of compliance policy settings 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 Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md index b2c187574ccf2..475ca64555f8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount [-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-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 49ea2f73983cf..1b7a389b7f692 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComp Get deviceComplianceSettingStates from deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,27 +59,14 @@ This cmdlet has the following aliases, Get deviceComplianceSettingStates from deviceManagement -**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 Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState Cmdlet. - - ## PARAMETERS ### -All @@ -570,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -608,26 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md index b1f6004c49141..78a10a135217e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstatecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComp Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -DeviceCompliancePolicySettingStateSummaryId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index c82d46342967c..43f71f57a34c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatus --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatus List of DeviceComplianceUserStatus. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId -DeviceComplianceUserStatusId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, List of DeviceComplianceUserStatus. -**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 Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyUserStatus 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,26 +590,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md index ecbc4f26c9c8d..98deeeb4048a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatuscount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount -DeviceCompliancePol [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatuscount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index f7a2181ab4cc1..ba7efe4019044 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Device compliance users status overview -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceCompliance [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,27 +46,14 @@ This cmdlet has the following aliases, Device compliance users status overview -**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 Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId -``` -This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Cmdlet. - - ## PARAMETERS ### -Break @@ -358,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -396,26 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md index 3eb09563d501a..5bc244d7fc12e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfiguration --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfiguration The device configurations. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDeviceConfiguration [-ExpandProperty ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementDeviceConfiguration -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The device configurations. -**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 Get-MgDeviceManagementDeviceConfiguration -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfiguration 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md index 872cdaa945671..0fba172e17931 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationAssignment --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationAssignment The list of assignments for the device configuration profile. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssignme -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, The list of assignments for the device configuration profile. -**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 Get-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfigurationAssignment 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,26 +590,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md index 735473c7f502e..72a9b34be3056 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignmentCount -DeviceConfigurationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignmentCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md index c8362c5e2f921..37eb259f90b3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceConfigurationCount [-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-MgDeviceManagementDeviceConfigurationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index f56cb9c86879d..e202679fc6470 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Device Configuration Setting State Device Summary -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig -SettingStateDeviceSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, Device Configuration Setting State Device Summary -**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 Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,26 +590,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md index e3a8fe4c6f1a0..b9a848e9a419e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummarycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount -DeviceConfigurationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount -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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummarycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 752e8f05862ec..54ef600f70f01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary The device configuration device state summary for this account. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ The device configuration device state summary for this account. Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,27 +35,14 @@ This cmdlet has the following aliases, The device configuration device state summary 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 Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary Cmdlet. - - ## PARAMETERS ### -Break @@ -297,26 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 9bc54fce982cf..91591ffcfb589 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationDeviceStatus --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStatus Device configuration installation status by device. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDevice -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, Device configuration installation status by device. -**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 Get-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceStatus 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,26 +590,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md index 401418ad72c82..83cec88e19e46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatuscount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount -DeviceConfigurationI [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatuscount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 4ed6d3d4c4d1f..82b8a0650357e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Device Configuration devices status overview -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigurati [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,27 +46,14 @@ This cmdlet has the following aliases, Device Configuration devices status overview -**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 Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigurationId $deviceConfigurationId -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Cmdlet. - - ## PARAMETERS ### -Break @@ -358,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -396,26 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md index b5823cc79336f..36379dd28d42e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationomasettingplaintextvalue Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue Invoke function getOmaSettingPlainTextValue -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue -DeviceConfigu -SecretReferenceValueId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Invoke function getOmaSettingPlainTextValue -**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 @@ -322,7 +321,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -360,27 +359,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationomasettingplaintextvalue) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationomasettingplaintextvalue) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md index f784c6a1b425f..fe55b7a2dcd2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationUserStatus --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationUserStatus Device configuration installation status by user. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, Device configuration installation status by user. -**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 Get-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfigurationUserStatus 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -607,26 +590,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md index 28412258a5816..39109e6ed4e20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatuscount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationUserStatusCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationUserStatusCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusCount -DeviceConfigurationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationUserStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatuscount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 0b79e14719b2f..1d094a322520a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceConfigurationUserStatusOverview --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceConfigurationUserStatusOverview Device Configuration users status overview -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfiguration [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusOverview -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,27 +46,14 @@ This cmdlet has the following aliases, Device Configuration users status overview -**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 Get-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurationId $deviceConfigurationId -``` -This example shows how to use the Get-MgDeviceManagementDeviceConfigurationUserStatusOverview Cmdlet. - - ## PARAMETERS ### -Break @@ -358,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -396,26 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceConfigurationUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md index 58c60accaad21..50953bf7861d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDevice The list of managed devices. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementManagedDevice [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementManagedDevice [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementManagedDevice -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,13 +56,15 @@ This cmdlet has the following aliases, The list of managed devices. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -527,7 +526,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -565,28 +564,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md index 66d834723287b..398cce9b7757c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceCategory --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceCategory Device category -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCategory?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Device category Get-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgDeviceManagementManagedDeviceCategory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Device category +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -336,7 +343,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -374,27 +381,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md index 7a63052025b9c..62ea85ba4069e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategorybyref Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceCategoryByRef --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceCategoryByRef Device category -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCategoryByRef](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCategoryByRef?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Device category Get-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId Get-MgDeviceManagementManagedDeviceCategoryByRef -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Device category +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -291,7 +298,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -329,27 +336,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceCategoryByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategorybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategorybyref) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 5b9c45d1f9d8d..e2722dbbeaaa6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceCompliancePolicyState --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceCompliancePolicyState Device compliance policy states for this device. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyState -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePolicy -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Device compliance policy states for this device. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -586,28 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystate) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md index a9b25554b293a..ee0a4936e056a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystatecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount -ManagedDeviceId < [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount -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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md index 96b7a823a7e00..b1f396155c6fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceConfigurationState --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceConfigurationState Device configuration states for this device. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementManagedDeviceConfigurationState -ManagedDeviceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationStateI -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, Device configuration states for this device. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -586,28 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstate) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md index e981ce3fbfd88..34e9a22b2eabb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstatecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceConfigurationStateCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceConfigurationStateCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationStateCount -ManagedDeviceId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationStateCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceConfigurationStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md index 9d05181b34524..9b9952eeb7c62 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementManagedDeviceCount [-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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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-MgDeviceManagementManagedDeviceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 79776056c39cb..f6c99215b0ed9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceLogCollectionRequest --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceLogCollectionRequest List of log collection requests -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequest -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionResp -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +57,16 @@ This cmdlet has the following aliases, List of log collection requests +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -586,27 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequest) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md index eeeb63b79ddbd..82bd0391eb3f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequestcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount -ManagedDeviceId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount -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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequestcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md index 8ab3c9995cc31..908becb44c3a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceOverview --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceOverview Device overview -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceOverview?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Device overview Get-MgDeviceManagementManagedDeviceOverview [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Device overview -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -284,27 +283,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceoverview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md index 0bfee4295faaf..0ba79163d5967 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceuser Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceUser --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceUser The primary users associated with the managed device. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceUser](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceUser?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementManagedDeviceUser -ManagedDeviceId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -40,6 +37,16 @@ This cmdlet has the following aliases, The primary users associated with the managed device. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -471,27 +478,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceUser](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceuser) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceuser) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 27ca4bc9bb97f..395a1933b10ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceWindowsProtectionState --- @@ -16,9 +16,6 @@ title: Get-MgDeviceManagementManagedDeviceWindowsProtectionState The device protection status. This property is read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionState -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, The device protection status. This property is read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -339,7 +346,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -377,27 +384,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceWindowsProtectionState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 9b7b972029082..25c22a6e285ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareS Device malware list -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState -ManagedDeviceId -WindowsDeviceMalwareStateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, Device malware list +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -586,27 +593,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md index bfcb199322b99..f9adefd314045 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestatecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareS Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCou -ManagedDeviceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCou -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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md index 2ba7d9564646c..35aadcb6df048 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementMobileAppTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEvent The collection property of MobileAppTroubleshootingEvent. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEvent [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshootingEve [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEvent -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The collection property of MobileAppTroubleshootingEvent. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementMobileAppTroubleshootingEvent -``` -This example shows how to use the Get-MgDeviceManagementMobileAppTroubleshootingEvent 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 0ba000aea9906..e8af2171eed5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Indicates collection of App Log Upload Request. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,27 +59,14 @@ This cmdlet has the following aliases, Indicates collection of App Log Upload Request. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -``` -This example shows how to use the Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. - - ## PARAMETERS ### -All @@ -570,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -608,26 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md index 8f0ba8bff149c..7cba2fe0b3f38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount -MobileAppTroubleshootingEventId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount -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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md index a71124a34eb82..7d24fbb200feb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementMobileAppTroubleshootingEventCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEventCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementMobileAppTroubleshootingEventCount [-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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementMobileAppTroubleshootingEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md index 431cdb735214d..267798bc242ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementNotificationMessageTemplate --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementNotificationMessageTemplate The Notification Message Templates. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementNotificationMessageTemplate [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementNotificationMessageTemplate -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The Notification Message Templates. -**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 Get-MgDeviceManagementNotificationMessageTemplate -``` -This example shows how to use the Get-MgDeviceManagementNotificationMessageTemplate 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md index 3c959f57ca774..d312fa86addc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementNotificationMessageTemplateCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementNotificationMessageTemplateCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementNotificationMessageTemplateCount [-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-MgDeviceManagementNotificationMessageTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 58ac66e96b57a..b574edbd04f91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMes The list of localized messages for this Notification Message Template. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,27 +59,14 @@ This cmdlet has the following aliases, The list of localized messages for this Notification Message Template. -**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 Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId -``` -This example shows how to use the Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage Cmdlet. - - ## PARAMETERS ### -All @@ -570,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -608,26 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md index e27561afd6365..e785199e5d8c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessagecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMes Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCou -NotificationMessageTemplateId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCou -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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessagecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md index 7ca6a6479efb8..c933c6333b024 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementsoftwareupdatestatussummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementSoftwareUpdateStatusSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementSoftwareUpdateStatusSummary The software update status summary. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ The software update status summary. Get-MgDeviceManagementSoftwareUpdateStatusSummary [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,27 +35,14 @@ This cmdlet has the following aliases, The software update status summary. -**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 Get-MgDeviceManagementSoftwareUpdateStatusSummary -``` -This example shows how to use the Get-MgDeviceManagementSoftwareUpdateStatusSummary Cmdlet. - - ## PARAMETERS ### -Break @@ -297,26 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementSoftwareUpdateStatusSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementsoftwareupdatestatussummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementsoftwareupdatestatussummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md index 0849032e01041..009ab1fe48e0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTroubleshootingEvent The list of troubleshooting events for the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementTroubleshootingEvent [-ExpandProperty ] [-Proper [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEvent [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementTroubleshootingEvent -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,13 +57,15 @@ This cmdlet has the following aliases, The list of troubleshooting events for the tenant. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -528,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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -566,28 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md index 83150409bde6a..59bd7491facf6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingeventcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTroubleshootingEventCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTroubleshootingEventCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTroubleshootingEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementTroubleshootingEventCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementTroubleshootingEventCount [-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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementTroubleshootingEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingeventcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index ae7f6a05bfe87..4237962dedb47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary The windows information protection app learning summaries. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -WindowsInformationProtectionAppLearningSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The windows information protection app learning summaries. -**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 Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -``` -This example shows how to use the Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md index de7f7560211ed..2daebca7dc671 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummarycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount [-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-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummarycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index f35eeaba91984..7999f8c724ba1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary The windows information protection network learning summaries. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -WindowsInformationProtectionNetworkLearningSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -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 windows information protection network learning summaries. -**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 Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -``` -This example shows how to use the Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. - - ## PARAMETERS ### -All @@ -542,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -580,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md index faf678e49cb8e..0611f2a416426 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummarycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryC Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount [-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-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummarycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md index 774cd2bf1cc99..14908534716a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsMalwareInformation --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsMalwareInformation The list of affected malware in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementWindowsMalwareInformation [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementWindowsMalwareInformation -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 affected malware in the tenant. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementWindowsMalwareInformation -``` -This example shows how to use the Get-MgDeviceManagementWindowsMalwareInformation 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md index 63d203d32ad4e..92da19f1404ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsMalwareInformationCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsMalwareInformationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementWindowsMalwareInformationCount [-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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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-MgDeviceManagementWindowsMalwareInformationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 13b193d263c52..686f220825858 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState List of devices affected by current malware with the malware state on each device -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,27 +59,14 @@ This cmdlet has the following aliases, List of devices affected by current malware with the malware state on each device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId -``` -This example shows how to use the Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Cmdlet. - - ## PARAMETERS ### -All @@ -570,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -608,26 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md index 40a553e89d77b..b96a95231f315 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestatecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount -WindowsMalwareInformationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount -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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestatecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md index dd5c44c0b4ef3..baba3cdb72dc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgcleandevicemanagementmanageddevicewindowsdevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice --- @@ -15,9 +15,6 @@ title: Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice Clean Windows device -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaCleanDeviceManagementManagedDeviceWindowsDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaCleanDeviceManagementManagedDeviceWindowsDevice?view=graph-powershell-beta) - ## SYNTAX ### CleanExpanded (Default) @@ -28,7 +25,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Clean @@ -39,7 +35,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CleanViaIdentityExpanded @@ -50,7 +45,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CleanViaIdentity @@ -61,7 +55,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Clean Windows device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -94,10 +78,6 @@ $params = @{ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -ManagedDeviceId $managedDeviceId -BodyParameter $params -``` -This example shows how to use the Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -129,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -291,7 +271,7 @@ HelpMessage: '' ### -KeepUserData - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -505,11 +485,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [KeepUserData ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -547,26 +527,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgcleandevicemanagementmanageddevicewindowsdevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgcleandevicemanagementmanageddevicewindowsdevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md index 01f46368bacc4..0de01719605df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgdowndevicemanagementmanageddeviceshut Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDownDeviceManagementManagedDeviceShut --- @@ -15,9 +15,6 @@ title: Invoke-MgDownDeviceManagementManagedDeviceShut Shut down device -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDownDeviceManagementManagedDeviceShut](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaDownDeviceManagementManagedDeviceShut?view=graph-powershell-beta) - ## SYNTAX ### Down (Default) @@ -27,7 +24,6 @@ Invoke-MgDownDeviceManagementManagedDeviceShut -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DownViaIdentity @@ -37,7 +33,6 @@ Invoke-MgDownDeviceManagementManagedDeviceShut -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Shut down device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Invoke-MgDownDeviceManagementManagedDeviceShut -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Invoke-MgDownDeviceManagementManagedDeviceShut Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgDownDeviceManagementManagedDeviceShut](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgdowndevicemanagementmanageddeviceshut) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgdowndevicemanagementmanageddeviceshut) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md index 66e5be3775593..7b2a91070dc03 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mglogoutdevicemanagementmanageddevicesharedappledeviceactiveuser Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser --- @@ -15,9 +15,6 @@ title: Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser Logout shared Apple device active user -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser?view=graph-powershell-beta) - ## SYNTAX ### Logout (Default) @@ -27,7 +24,6 @@ Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser -Managed [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### LogoutViaIdentity @@ -38,7 +34,6 @@ Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Logout shared Apple device active user -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser Cmdlet. - - ## PARAMETERS ### -Break @@ -380,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -418,26 +400,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mglogoutdevicemanagementmanageddevicesharedappledeviceactiveuser) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mglogoutdevicemanagementmanageddevicesharedappledeviceactiveuser) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md index 89dc6506d4269..a51c281b88e6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgretiredevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRetireDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: Invoke-MgRetireDeviceManagementManagedDevice Retire a device -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaRetireDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaRetireDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### Retire (Default) @@ -27,7 +24,6 @@ Invoke-MgRetireDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RetireViaIdentity @@ -37,7 +33,6 @@ Invoke-MgRetireDeviceManagementManagedDevice -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Retire a device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Invoke-MgRetireDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Invoke-MgRetireDeviceManagementManagedDevice Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgRetireDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgretiredevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgretiredevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md index 94301e4799d96..01f75a0970475 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscandevicemanagementmanageddevicewindowsdefender Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender --- @@ -15,9 +15,6 @@ title: Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender Invoke action windowsDefenderScan -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaScanDeviceManagementManagedDeviceWindowsDefender](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaScanDeviceManagementManagedDeviceWindowsDefender?view=graph-powershell-beta) - ## SYNTAX ### ScanExpanded (Default) @@ -28,7 +25,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Scan @@ -39,7 +35,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScanViaIdentityExpanded @@ -50,7 +45,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScanViaIdentity @@ -61,7 +55,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Invoke action windowsDefenderScan -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -94,10 +78,6 @@ $params = @{ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -ManagedDeviceId $managedDeviceId -BodyParameter $params -``` -This example shows how to use the Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -129,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -402,7 +382,7 @@ HelpMessage: '' ### -QuickScan - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -505,11 +485,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [QuickScan ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -547,26 +527,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscandevicemanagementmanageddevicewindowsdefender) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscandevicemanagementmanageddevicewindowsdefender) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md index 0bd39ec0b481d..6c8dd82ad110b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscheduledevicemanagementdevicecompliancepolicyactionforrule Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule --- @@ -15,9 +15,6 @@ title: Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule Invoke action scheduleActionsForRules -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaScheduleDeviceManagementDeviceCompliancePolicyActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaScheduleDeviceManagementDeviceCompliancePolicyActionForRule?view=graph-powershell-beta) - ## SYNTAX ### ScheduleExpanded (Default) @@ -30,7 +27,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Schedule @@ -42,7 +38,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScheduleViaIdentityExpanded @@ -55,7 +50,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScheduleViaIdentity @@ -67,7 +61,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,18 +72,9 @@ This cmdlet has the following aliases, Invoke action scheduleActionsForRules -**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 @@ -106,10 +90,6 @@ $params = @{ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -141,7 +121,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -239,7 +219,7 @@ HelpMessage: '' ### -DeviceComplianceScheduledActionForRules - +. To construct, see NOTES section for DEVICECOMPLIANCESCHEDULEDACTIONFORRULES properties and create a hash table. ```yaml @@ -518,7 +498,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [DeviceComplianceScheduledActionForRules ]: [Id ]: The unique identifier for an entity. @@ -550,7 +530,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -588,26 +568,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscheduledevicemanagementdevicecompliancepolicyactionforrule) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscheduledevicemanagementdevicecompliancepolicyactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md index 9ecaf82110e71..cc0ccc3f11ff1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/lock-mgdevicemanagementmanageddeviceremote Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Lock-MgDeviceManagementManagedDeviceRemote --- @@ -15,9 +15,6 @@ title: Lock-MgDeviceManagementManagedDeviceRemote Remote lock -> [!NOTE] -> To view the beta release of this cmdlet, view [Lock-MgBetaDeviceManagementManagedDeviceRemote](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Lock-MgBetaDeviceManagementManagedDeviceRemote?view=graph-powershell-beta) - ## SYNTAX ### Lock (Default) @@ -27,7 +24,6 @@ Lock-MgDeviceManagementManagedDeviceRemote -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### LockViaIdentity @@ -37,7 +33,6 @@ Lock-MgDeviceManagementManagedDeviceRemote -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Remote lock -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Lock-MgDeviceManagementManagedDeviceRemote -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Lock-MgDeviceManagementManagedDeviceRemote Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Lock-MgDeviceManagementManagedDeviceRemote](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/lock-mgdevicemanagementmanageddeviceremote) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/lock-mgdevicemanagementmanageddeviceremote) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md index db01f1913f7dc..4cfb0273d8a2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.DeviceManagement -Module Guid: 63109a44-8cb3-4dec-8c7d-dacbc986d1da +Module Guid: 6d4c010e-444e-45aa-aecb-13bb843a8e7a Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.devicemanagement/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -537,22 +537,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md index 5dd0d91b1f21b..ed17c67ee8ed0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelist Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgAdminEdgeInternetExplorerModeSiteList --- @@ -15,9 +15,6 @@ title: New-MgAdminEdgeInternetExplorerModeSiteList Create a new browserSiteList object to support Internet Explorer mode. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgAdminEdgeInternetExplorerModeSiteList [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +37,6 @@ New-MgAdminEdgeInternetExplorerModeSiteList -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,18 +48,9 @@ This cmdlet has the following aliases, Create a new browserSiteList object to support Internet Explorer mode. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -75,10 +61,6 @@ $params = @{ New-MgAdminEdgeInternetExplorerModeSiteList -BodyParameter $params -``` -This example shows how to use the New-MgAdminEdgeInternetExplorerModeSiteList Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -603,7 +585,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 singleton entity which is used to specify IE mode site list metadata +BODYPARAMETER : A singleton entity which is used to specify IE mode site list metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -672,7 +654,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [WebUrl ]: The URL of the site. [Status ]: browserSiteListStatus -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -683,7 +665,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PUBLISHEDBY ``: identitySet +PUBLISHEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -764,27 +746,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelist) -- [Graph API Reference](https://learn.microsoft.com/graph/api/internetexplorermode-post-sitelists?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelist) +- [](https://learn.microsoft.com/graph/api/internetexplorermode-post-sitelists?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index f3ced8f0e321a..3882ca4820893 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsharedcookie Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie --- @@ -15,9 +15,6 @@ title: New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Create a new browserSharedCookie object in a browserSiteList. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,6 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -57,7 +53,6 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +62,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,18 +74,9 @@ This cmdlet has the following aliases, Create a new browserSharedCookie object in a browserSiteList. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -106,10 +92,6 @@ $params = @{ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BodyParameter $params -``` -This example shows how to use the New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -823,7 +805,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 ``: browserSharedCookie +BODYPARAMETER : browserSharedCookie [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -876,7 +858,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the cookie was last published. [SourceEnvironment ]: browserSharedCookieSourceEnvironment -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -911,7 +893,7 @@ INPUTOBJECT ``: Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -925,27 +907,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [](https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md index b7f4339c274d2..84959f36ced81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsite Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgAdminEdgeInternetExplorerModeSiteListSite --- @@ -15,9 +15,6 @@ title: New-MgAdminEdgeInternetExplorerModeSiteListSite Create a new browserSite object in a browserSiteList. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId [-TargetEnvironment ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -43,7 +40,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -59,7 +56,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -69,7 +66,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,18 +78,9 @@ This cmdlet has the following aliases, Create a new browserSite object in a browserSiteList. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -108,10 +96,6 @@ $params = @{ New-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BodyParameter $params -``` -This example shows how to use the New-MgAdminEdgeInternetExplorerModeSiteListSite Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -826,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. -BODYPARAMETER ``: Singleton entity which is used to specify IE mode site metadata +BODYPARAMETER : Singleton entity which is used to specify IE mode site metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -880,7 +864,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the site was last published. [TargetEnvironment ]: browserSiteTargetEnvironment -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -915,7 +899,7 @@ INPUTOBJECT ``: Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -929,27 +913,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsite) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-post-sites?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsite) +- [](https://learn.microsoft.com/graph/api/browsersitelist-post-sites?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md index 6a5d16d126b3d..d52d5ffe65fd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdetectedapp Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDetectedApp --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDetectedApp Create new navigation property to detectedApps for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgDeviceManagementDetectedApp [-ResponseHeadersVariable ] [-Publisher ] [-SizeInByte ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgDeviceManagementDetectedApp -BodyParameter [-ResponseHeadersVariable ] [-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 detectedApps for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -78,10 +64,6 @@ $params = @{ New-MgDeviceManagementDetectedApp -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDetectedApp Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -548,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. -BODYPARAMETER ``: A managed or unmanaged app that is installed on a managed device. +BODYPARAMETER : A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -957,11 +939,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. @@ -1589,7 +1574,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 @@ -1657,7 +1642,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. @@ -1694,6 +1680,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. @@ -3669,7 +3696,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 @@ -3874,6 +3902,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. @@ -5468,7 +5497,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. @@ -5729,8 +5758,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. @@ -6199,11 +6228,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. @@ -6831,7 +6863,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 @@ -6899,7 +6931,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. @@ -6936,6 +6969,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. @@ -8911,7 +8985,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 @@ -9116,6 +9191,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. @@ -10710,7 +10786,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. @@ -10971,8 +11047,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. @@ -11033,26 +11109,4 @@ Defaults to setting on client device. ## RELATED LINKS -- [New-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdetectedapp) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md index ffb6c1e797215..1f35d1b7308ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCategory --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCategory Create new navigation property to deviceCategories for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgDeviceManagementDeviceCategory [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Description ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +34,6 @@ New-MgDeviceManagementDeviceCategory -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 deviceCategories for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -72,10 +59,6 @@ $params = @{ New-MgDeviceManagementDeviceCategory -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCategory Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -431,7 +414,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 ``: Device categories provides a way to organize your devices. +BODYPARAMETER : Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -443,26 +426,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecategory) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md index 667f72f86a3ad..eab82fd39990f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicy --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicy Create new navigation property to deviceCompliancePolicies for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -35,7 +32,7 @@ New-MgDeviceManagementDeviceCompliancePolicy [-ResponseHeadersVariable ] [-UserStatuses ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +42,6 @@ New-MgDeviceManagementDeviceCompliancePolicy -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,18 +53,9 @@ This cmdlet has the following aliases, Create new navigation property to deviceCompliancePolicies 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 @@ -102,10 +89,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicy -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicy Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -684,7 +667,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: This is the base class for Compliance policy. +BODYPARAMETER : This is the base class for Compliance policy. Compliance policies are platform specific and individual per-platform compliance policies inherit from here. [(Any) ]: This indicates any property can be added to this object. @@ -792,7 +775,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW ``: deviceComplianceDeviceOverview +DEVICESTATUSOVERVIEW : deviceComplianceDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -829,7 +812,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW ``: deviceComplianceUserOverview +USERSTATUSOVERVIEW : deviceComplianceUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -844,26 +827,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicy) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 49eeba19c5d48..095fccfaa918b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicyAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicyAssignment Create new navigation property to assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +35,6 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -48,7 +44,7 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -59,7 +55,6 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,18 +66,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) | 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 @@ -96,10 +82,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -514,14 +496,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Device compliance policy assignment. +BODYPARAMETER : Device compliance policy assignment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -559,26 +541,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 9d6c1ded990b6..6b736a2a7e909 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Create new navigation property to deviceSettingStateSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -56,7 +51,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +61,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,13 +72,15 @@ This cmdlet has the following aliases, Create new navigation property to deviceSettingStateSummaries for deviceManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -717,7 +712,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 ``: Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER : Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -731,7 +726,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -769,27 +764,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 459d23d049ad5..359a89500755a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Create new navigation property to deviceStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicy [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +49,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -63,7 +58,7 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -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, Create new navigation property to deviceStatuses 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 @@ -103,10 +89,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -683,7 +665,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 ``: deviceComplianceDeviceStatus +BODYPARAMETER : deviceComplianceDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -695,7 +677,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -733,26 +715,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 365240a011fd1..983aeecec5f65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Create new navigation property to scheduledActionsForRule for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -53,7 +49,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +61,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Create new navigation property to scheduledActionsForRule 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 @@ -99,10 +85,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -547,7 +529,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 ``: Scheduled Action for Rule +BODYPARAMETER : Scheduled Action for Rule [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -563,7 +545,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -611,26 +593,4 @@ Valid values 0 to 8760 ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index f0058a7445f01..288b174f8064a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSchedul Create new navigation property to scheduledActionConfigurations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-NotificationMessageCcList ] [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -54,7 +51,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +61,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Create new navigation property to scheduledActionConfigurations 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 @@ -104,10 +90,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. - - ## PARAMETERS ### -ActionType @@ -631,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 ``: Scheduled Action Configuration +BODYPARAMETER : Scheduled Action Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -641,7 +623,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -679,26 +661,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 03d19557a2ee2..87411b4a32b0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,6 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeader [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,6 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-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 deviceCompliancePolicySettingStateSummaries 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 @@ -86,10 +72,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -222,7 +204,7 @@ HelpMessage: '' ### -DeviceComplianceSettingStates - +. To construct, see NOTES section for DEVICECOMPLIANCESETTINGSTATES properties and create a hash table. ```yaml @@ -632,7 +614,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 ``: Device Compilance Policy Setting State summary across the account. +BODYPARAMETER : Device Compilance Policy Setting State summary across the account. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -679,26 +661,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 10832cbeea2d7..85b0a56401838 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComp Create new navigation property to deviceComplianceSettingStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +39,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -56,7 +53,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -67,7 +64,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,18 +76,9 @@ This cmdlet has the following aliases, Create new navigation property to deviceComplianceSettingStates 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 @@ -111,10 +99,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -799,7 +783,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 ``: Device compliance setting State for a given device. +BODYPARAMETER : Device compliance setting State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -815,7 +799,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: The User PrincipalName that is being reported -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -853,26 +837,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 337100571744d..55cf495588a17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceCompliancePolicyUserStatus --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceCompliancePolicyUserStatus Create new navigation property to userStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,7 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,6 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +56,7 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Create new navigation property to userStatuses 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 @@ -99,10 +85,6 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyUserStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -625,7 +607,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 ``: deviceComplianceUserStatus +BODYPARAMETER : deviceComplianceUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -635,7 +617,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -673,26 +655,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md index 273be06b14383..0fb3c146d09fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceConfiguration --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceConfiguration Create new navigation property to deviceConfigurations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -34,7 +31,7 @@ New-MgDeviceManagementDeviceConfiguration [-ResponseHeadersVariable ] [-UserStatuses ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +41,6 @@ New-MgDeviceManagementDeviceConfiguration -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -56,18 +52,9 @@ This cmdlet has the following aliases, Create new navigation property to deviceConfigurations 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 @@ -102,10 +89,6 @@ passwordRequired = $true New-MgDeviceManagementDeviceConfiguration -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceConfiguration Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -659,7 +642,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: Device Configuration. +BODYPARAMETER : Device Configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -750,7 +733,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW ``: deviceConfigurationDeviceOverview +DEVICESTATUSOVERVIEW : deviceConfigurationDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -771,7 +754,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW ``: deviceConfigurationUserOverview +USERSTATUSOVERVIEW : deviceConfigurationUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -786,26 +769,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md index 13e30e0daf0d3..a2c1d423713d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceConfigurationAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceConfigurationAssignment Create new navigation property to assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +34,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -47,7 +44,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -57,7 +54,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -69,18 +66,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) | 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 @@ -94,10 +82,6 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceConfigurationAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -512,14 +496,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: The device configuration assignment entity assigns an AAD group to a specific device configuration. +BODYPARAMETER : The device configuration assignment entity assigns an AAD group to a specific device configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -557,26 +541,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 09ad445165912..627a263d1df1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Create new navigation property to deviceSettingStateSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig [-RemediatedDeviceCount ] [-SettingName ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -54,7 +51,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +61,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Create new navigation property to deviceSettingStateSummaries 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 @@ -107,10 +93,6 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -741,7 +723,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 ``: Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER : Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -755,7 +737,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -793,26 +775,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 0096fcfcb8736..952f6e4609387 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceConfigurationDeviceStatus --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceConfigurationDeviceStatus Create new navigation property to deviceStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +49,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -63,7 +58,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -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, Create new navigation property to deviceStatuses 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 @@ -103,10 +89,6 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceConfigurationDeviceStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -683,7 +665,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 ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -695,7 +677,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -733,26 +715,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md index 51fb43e6dc1e8..e50a4dc9189b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceConfigurationUserStatus --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceConfigurationUserStatus Create new navigation property to userStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,7 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,6 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +56,7 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Create new navigation property to userStatuses 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 @@ -99,10 +85,6 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceConfigurationUserStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -625,7 +607,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 ``: deviceConfigurationUserStatus +BODYPARAMETER : deviceConfigurationUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -635,7 +617,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -673,26 +655,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md index 70c1902da31e2..740578b488673 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementManagedDevice Create new navigation property to managedDevices for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -41,7 +38,7 @@ New-MgDeviceManagementManagedDevice [-ResponseHeadersVariable ] [-Users ] [-WindowsProtectionState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -51,7 +48,6 @@ New-MgDeviceManagementManagedDevice -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -63,18 +59,9 @@ This cmdlet has the following aliases, Create new navigation property to managedDevices for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -188,10 +175,6 @@ $params = @{ New-MgDeviceManagementManagedDevice -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementManagedDevice Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -918,7 +901,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 ``: Devices that are managed or pre-enrolled through Intune. +BODYPARAMETER : Devices that are managed or pre-enrolled through Intune. Limited support for $filter: Only properties whose descriptions mention support for $filter may be used, and combinations of those filtered properties must use 'and', not 'or'. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -1321,11 +1304,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. @@ -1953,7 +1939,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 @@ -2021,7 +2007,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. @@ -2058,6 +2045,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. @@ -4033,7 +4061,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 @@ -4238,6 +4267,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. @@ -5832,7 +5862,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. @@ -6093,8 +6123,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. @@ -6152,7 +6182,7 @@ Defaults to setting on client device. [TamperProtectionEnabled ]: When TRUE indicates the Windows Defender tamper protection feature is enabled, when FALSE indicates the Windows Defender tamper protection feature is not enabled. Defaults to setting on client device. -CONFIGURATIONMANAGERCLIENTENABLEDFEATURES ``: configuration Manager client enabled features +CONFIGURATIONMANAGERCLIENTENABLEDFEATURES : configuration Manager client enabled features [(Any) ]: This indicates any property can be added to this object. [CompliancePolicy ]: Whether compliance policy is managed by Intune [DeviceConfiguration ]: Whether device configuration is managed by Intune @@ -6161,7 +6191,7 @@ CONFIGURATIONMANAGERCLIENTENABLEDFEATURES `]: Whether resource access is managed by Intune [WindowsUpdateForBusiness ]: Whether Windows Update for Business is managed by Intune -DEVICECATEGORY ``: Device categories provides a way to organize your devices. +DEVICECATEGORY : Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -6220,7 +6250,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -DEVICEHEALTHATTESTATIONSTATE ``: deviceHealthAttestationState +DEVICEHEALTHATTESTATIONSTATE : deviceHealthAttestationState [(Any) ]: This indicates any property can be added to this object. [AttestationIdentityKey ]: TWhen an Attestation Identity Key (AIK) is present on a device, it indicates that the device has an endorsement key (EK) certificate. [BitLockerStatus ]: On or Off of BitLocker Drive Encryption @@ -6543,11 +6573,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. @@ -7175,7 +7208,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 @@ -7243,7 +7276,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. @@ -7280,6 +7314,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. @@ -9255,7 +9330,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 @@ -9460,6 +9536,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. @@ -11240,7 +11317,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. @@ -11501,8 +11578,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. @@ -11512,7 +11589,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? -WINDOWSPROTECTIONSTATE ``: Device protection status entity. +WINDOWSPROTECTIONSTATE : Device protection status entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -11564,26 +11641,4 @@ Defaults to setting on client device. ## RELATED LINKS -- [New-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 65667fa47b8a9..00eff24844bf4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicecompliancepolicystate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementManagedDeviceCompliancePolicyState --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementManagedDeviceCompliancePolicyState Create new navigation property to deviceCompliancePolicyStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -ManagedDeviceId ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +48,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +58,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to deviceCompliancePolicyStates for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -487,7 +494,7 @@ HelpMessage: '' ### -SettingStates - +. To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml @@ -623,7 +630,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 ``: Device Compliance Policy State for a given device. +BODYPARAMETER : Device Compliance Policy State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -649,7 +656,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -704,27 +711,4 @@ SETTINGSTATES : . ## RELATED LINKS -- [New-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicecompliancepolicystate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md index 437acc7fd2024..51f9cb34a242a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddeviceconfigurationstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementManagedDeviceConfigurationState --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementManagedDeviceConfigurationState Create new navigation property to deviceConfigurationStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -ManagedDeviceId [-SettingStates ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -ManagedDeviceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +48,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +58,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to deviceConfigurationStates for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -487,7 +494,7 @@ HelpMessage: '' ### -SettingStates - +. To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml @@ -623,7 +630,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 ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -649,7 +656,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -704,27 +711,4 @@ SETTINGSTATES : . ## RELATED LINKS -- [New-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddeviceconfigurationstate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md index 569138acb5712..a83c147ccc8c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicelogcollectionrequestdownloadurl Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl Invoke action createDownloadUrl -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl?view=graph-powershell-beta) - ## SYNTAX ### Create (Default) @@ -28,7 +25,6 @@ New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -38,7 +34,7 @@ New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -50,6 +46,16 @@ This cmdlet has the following aliases, Invoke action createDownloadUrl +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -359,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -397,27 +403,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicelogcollectionrequestdownloadurl) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicelogcollectionrequestdownloadurl) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 6aa198c3026ad..09106a112ad72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareS Create new navigation property to detectedMalwareState for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -59,7 +54,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -70,7 +64,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -82,6 +75,16 @@ This cmdlet has the following aliases, Create new navigation property to detectedMalwareState for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalInformationUrl @@ -739,7 +742,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 ``: Malware detection entity. +BODYPARAMETER : Malware detection entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -754,7 +757,7 @@ Read-only. [State ]: Malware current status [ThreatState ]: Malware threat status -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -792,27 +795,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md index 4986e9960bc45..e41f244afe0f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementMobileAppTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementMobileAppTroubleshootingEvent Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEvent [-ResponseHeadersVariable ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +35,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEvent -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 new navigation property to mobileAppTroubleshootingEvents for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -71,10 +59,6 @@ $params = @{ New-MgDeviceManagementMobileAppTroubleshootingEvent -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementMobileAppTroubleshootingEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -415,7 +399,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -BODYPARAMETER ``: mobileAppTroubleshootingEvent +BODYPARAMETER : mobileAppTroubleshootingEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -430,26 +414,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 93e8d06d9eb34..52d344981589b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Create new navigation property to appLogCollectionRequests for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ErrorMessage ] [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +48,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ErrorMessage ] [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +59,6 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +70,9 @@ This cmdlet has the following aliases, Create new navigation property to appLogCollectionRequests for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -102,10 +88,6 @@ completedDateTime = [System.DateTime]::Parse("2016-12-31T23:58:52.3534526-08:00" New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -601,7 +583,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 for AppLogCollectionRequest contains all logs values. +BODYPARAMETER : Entity for AppLogCollectionRequest contains all logs values. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -610,7 +592,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -648,26 +630,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md index 99ee462cda19f..15bb7b3e3793b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestdownloadurl Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Invoke action createDownloadUrl -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl?view=graph-powershell-beta) - ## SYNTAX ### Create (Default) @@ -28,7 +25,6 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownlo [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -38,7 +34,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownlo -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -50,27 +46,14 @@ This cmdlet has the following aliases, Invoke action createDownloadUrl -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -AppLogCollectionRequestId $appLogCollectionRequestId -``` -This example shows how to use the New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl Cmdlet. - - ## PARAMETERS ### -AppLogCollectionRequestId @@ -380,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -418,26 +401,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestdownloadurl) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestdownloadurl) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md index 58d3726d98f0f..6a93a641a768e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementNotificationMessageTemplate --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementNotificationMessageTemplate Create new navigation property to notificationMessageTemplates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgDeviceManagementNotificationMessageTemplate [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgDeviceManagementNotificationMessageTemplate -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -52,18 +48,9 @@ This cmdlet has the following aliases, Create new navigation property to notificationMessageTemplates 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 @@ -79,10 +66,6 @@ $params = @{ New-MgDeviceManagementNotificationMessageTemplate -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementNotificationMessageTemplate Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -523,7 +506,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 ``: Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. +BODYPARAMETER : Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance. [(Any) ]: This indicates any property can be added to this object. @@ -560,26 +543,4 @@ To unset, set this property to true on another Localized Notification Message. ## RELATED LINKS -- [New-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index f7cb4d92c2362..40d03b7a2171c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMes Create new navigation property to localizedNotificationMessages for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -52,7 +49,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +60,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +72,9 @@ This cmdlet has the following aliases, Create new navigation property to localizedNotificationMessages 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 @@ -100,10 +88,6 @@ $params = @{ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -628,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 ``: The text content of a Notification Message Template for the specified locale. +BODYPARAMETER : The text content of a Notification Message Template for the specified locale. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -640,7 +624,7 @@ To unset, set this property to true on another Localized Notification Message. [MessageTemplate ]: The Message Template content. [Subject ]: The Message Template Subject. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -678,26 +662,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md index b5852aff168aa..776be2e5ccd5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementtroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementTroubleshootingEvent Create new navigation property to troubleshootingEvents for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgDeviceManagementTroubleshootingEvent [-ResponseHeadersVariable ] [-AdditionalProperties ] [-CorrelationId ] [-EventDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +35,6 @@ New-MgDeviceManagementTroubleshootingEvent [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,13 +46,15 @@ This cmdlet has the following aliases, Create new navigation property to troubleshootingEvents for deviceManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -410,7 +408,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 ``: Event representing an general failure. +BODYPARAMETER : Event representing an general failure. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -420,27 +418,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementtroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 8819c0ab49b68..dc07230d6a6d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionapplearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ApplicationType ] [-DeviceCount ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,6 @@ New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,18 +47,9 @@ This cmdlet has the following aliases, Create new navigation property to windowsInformationProtectionAppLearningSummaries 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 @@ -75,10 +62,6 @@ $params = @{ New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -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 ``: Windows Information Protection AppLearning Summary entity. +BODYPARAMETER : Windows Information Protection AppLearning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -463,26 +446,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionapplearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index e0334ac7abd0f..34f110d917ccd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,6 @@ New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-Id ] [-Url ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-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 windowsInformationProtectionNetworkLearningSummaries 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 @@ -74,10 +60,6 @@ $params = @{ New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -430,7 +412,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 ``: Windows Information Protection Network learning Summary entity. +BODYPARAMETER : Windows Information Protection Network learning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -440,26 +422,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md index 0c283e3479356..c4aed3e8d733d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementWindowsMalwareInformation --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementWindowsMalwareInformation Create new navigation property to windowsMalwareInformation for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgDeviceManagementWindowsMalwareInformation [-ResponseHeadersVariable ] [-LastDetectionDateTime ] [-Severity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgDeviceManagementWindowsMalwareInformation -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -52,18 +49,9 @@ This cmdlet has the following aliases, Create new navigation property to windowsMalwareInformation for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -78,10 +66,6 @@ $params = @{ New-MgDeviceManagementWindowsMalwareInformation -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementWindowsMalwareInformation Cmdlet. - - ## PARAMETERS ### -AdditionalInformationUrl @@ -519,7 +503,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 ``: Malware information entity. +BODYPARAMETER : Malware information entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -551,26 +535,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index ea4646b795135..be1fa61d41281 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Create new navigation property to deviceMalwareStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,6 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -56,7 +51,6 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +61,7 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,18 +73,9 @@ This cmdlet has the following aliases, Create new navigation property to deviceMalwareStates for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -106,10 +91,6 @@ $params = @{ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -659,7 +640,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 ``: Malware state for a windows device +BODYPARAMETER : Malware state for a windows device [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -670,7 +651,7 @@ Read-only. [LastStateChangeDateTime ]: The last time this particular threat was changed [ThreatState ]: Malware threat status -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -708,26 +689,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md index 73874f146861c..1236de24ccae1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/publish-mgadminedgeinternetexplorermodesitelist Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Publish-MgAdminEdgeInternetExplorerModeSiteList --- @@ -15,9 +15,6 @@ title: Publish-MgAdminEdgeInternetExplorerModeSiteList Publish the specified browserSiteList for devices to download. -> [!NOTE] -> To view the beta release of this cmdlet, view [Publish-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Publish-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) - ## SYNTAX ### PublishExpanded (Default) @@ -28,7 +25,7 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-SharedCookies ] [-Sites ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Publish @@ -39,7 +36,6 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PublishViaIdentityExpanded @@ -50,7 +46,7 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Sites ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### PublishViaIdentity @@ -61,7 +57,6 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,13 +68,15 @@ This cmdlet has the following aliases, Publish the specified browserSiteList for devices to download. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -112,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -386,7 +383,7 @@ HelpMessage: '' ### -Revision - +. ```yaml Type: System.String @@ -413,7 +410,7 @@ HelpMessage: '' ### -SharedCookies - +. To construct, see NOTES section for SHAREDCOOKIES properties and create a hash table. ```yaml @@ -441,7 +438,7 @@ HelpMessage: '' ### -Sites - +. To construct, see NOTES section for SITES properties and create a hash table. ```yaml @@ -523,7 +520,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Revision ]: [SharedCookies ]: @@ -583,7 +580,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [TargetEnvironment ]: browserSiteTargetEnvironment [WebUrl ]: The URL of the site. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -688,27 +685,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Publish-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/publish-mgadminedgeinternetexplorermodesitelist) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/publish-mgadminedgeinternetexplorermodesitelist) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md index 5ed30bb093160..054021ea5dfdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedge Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgAdminEdge --- @@ -15,9 +15,6 @@ title: Remove-MgAdminEdge Delete navigation property edge for admin -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdge](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdge?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgAdminEdge [-IfMatch ] [-ResponseHeadersVariable ] [-Bre [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -39,6 +35,16 @@ This cmdlet has the following aliases, Delete navigation property edge for admin +## 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-MgAdminEdge](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedge) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedge) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md index 096cb58a27598..6330b9184dadb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermode Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgAdminEdgeInternetExplorerMode --- @@ -15,9 +15,6 @@ title: Remove-MgAdminEdgeInternetExplorerMode Delete navigation property internetExplorerMode for admin -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerMode?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgAdminEdgeInternetExplorerMode [-IfMatch ] [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -39,6 +35,16 @@ This cmdlet has the following aliases, Delete navigation property internetExplorerMode for admin +## 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-MgAdminEdgeInternetExplorerMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermode) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md index c807475cf37a7..30080df818031 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelist Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgAdminEdgeInternetExplorerModeSiteList --- @@ -15,9 +15,6 @@ title: Remove-MgAdminEdgeInternetExplorerModeSiteList Delete a browserSiteList object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-IfM [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete a browserSiteList object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId $browserSiteListId -``` -This example shows how to use the Remove-MgAdminEdgeInternetExplorerModeSiteList 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,27 +420,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelist) -- [Graph API Reference](https://learn.microsoft.com/graph/api/internetexplorermode-delete-sitelists?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelist) +- [](https://learn.microsoft.com/graph/api/internetexplorermode-delete-sitelists?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 4dd5482b9f451..a5afff613f8c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsharedcookie Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie --- @@ -15,9 +15,6 @@ title: Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Delete a browserSharedCookie from a browserSiteList. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieI [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,38 +45,20 @@ This cmdlet has the following aliases, Delete a browserSharedCookie from a browserSiteList. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Delete a shared cookie that was not previously published -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId -``` -This example will delete a shared cookie that was not previously published - -### Example 2: Delete a shared cookie that was previously published - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId -``` -This example will delete a shared cookie that was previously published - - ## PARAMETERS ### -Break @@ -433,7 +410,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -471,27 +448,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-delete-sharedcookies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [](https://learn.microsoft.com/graph/api/browsersitelist-delete-sharedcookies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md index 9d72637a131e8..2f4b8284cd042 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsite Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgAdminEdgeInternetExplorerModeSiteListSite --- @@ -15,9 +15,6 @@ title: Remove-MgAdminEdgeInternetExplorerModeSiteListSite Delete a browserSite from a browserSiteList. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,38 +45,20 @@ This cmdlet has the following aliases, Delete a browserSite from a browserSiteList. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Delete a site that was not previously published -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BrowserSiteId $browserSiteId -``` -This example will delete a site that was not previously published - -### Example 2: Delete a site that was previously published - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BrowserSiteId $browserSiteId -``` -This example will delete a site that was previously published - - ## PARAMETERS ### -Break @@ -433,7 +410,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -471,27 +448,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsite) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-delete-sites?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsite) +- [](https://learn.microsoft.com/graph/api/browsersitelist-delete-sites?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md index 4dfbf48414961..0f39b00ea29b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdetectedapp Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDetectedApp --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDetectedApp Delete navigation property detectedApps for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDetectedApp -DetectedAppId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementDetectedApp -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 detectedApps for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDetectedApp -DetectedAppId $detectedAppId -``` -This example shows how to use the Remove-MgDeviceManagementDetectedApp 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdetectedapp) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md index b4e89c95a7832..6b3911c01bbe2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCategory --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCategory Delete navigation property deviceCategories for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceCategory -DeviceCategoryId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementDeviceCategory -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 deviceCategories for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCategory -DeviceCategoryId $deviceCategoryId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCategory 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecategory) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md index 9c1ccb96aab5b..403f4b8c10985 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicy --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicy Delete navigation property deviceCompliancePolicies for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicy -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 deviceCompliancePolicies 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 Remove-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId $deviceCompliancePolicyId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicy 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicy) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md index cba7f3f3ce242..a3c2d59ff31be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyAssignment Delete navigation property assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-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 assignments 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 Remove-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceCompliancePolicyAssignmentId $deviceCompliancePolicyAssignmentId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyAssignment Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -460,26 +442,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index fd4758f590710..e4a7767b58fbd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Delete navigation property deviceSettingStateSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,13 +46,15 @@ This cmdlet has the following aliases, Delete navigation property deviceSettingStateSummaries for deviceManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -410,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -448,27 +445,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 7ca67946b94b0..95e7e2b0c4880 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Delete navigation property deviceCompliancePolicyDeviceStateSummary for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -39,6 +35,16 @@ This cmdlet has the following aliases, Delete navigation property deviceCompliancePolicyDeviceStateSummary 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-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatesummary) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 6f1955eb18a56..a9c383e20cb90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Delete navigation property deviceStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDev [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-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 deviceStatuses 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 Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceDeviceStatusId $deviceComplianceDeviceStatusId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -460,26 +442,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index b80a4181b5495..3e68cb280c7a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Delete navigation property deviceStatusOverview for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property deviceStatusOverview for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -419,27 +424,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index cf75ea9812a2a..dc69adfd0146e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Delete navigation property scheduledActionsForRule for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property scheduledActionsForRule 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 Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -461,26 +443,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 689655324d02d..718e980846482 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSche Delete navigation property scheduledActionConfigurations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,27 +47,14 @@ This cmdlet has the following aliases, Delete navigation property scheduledActionConfigurations 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 Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -DeviceComplianceActionItemId $deviceComplianceActionItemId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. - - ## PARAMETERS ### -Break @@ -445,7 +427,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -483,26 +465,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index a2ae27a067c04..de0e88edca648 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceCompliancePolicySettingStateSummaries 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 Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Cmdlet. - - ## PARAMETERS ### -Break @@ -402,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -440,26 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 770c7716d00bd..80adf6329f7dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceC Delete navigation property deviceComplianceSettingStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceComplianceSettingStates 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 Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -DeviceComplianceSettingStateId $deviceComplianceSettingStateId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -461,26 +443,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 796674559a2dd..7f619b2454b86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus Delete navigation property userStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolic [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-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 userStatuses 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 Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceUserStatusId $deviceComplianceUserStatusId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -460,26 +442,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 208a77c7887e7..d550e3aedf94e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Delete navigation property userStatusOverview for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceComplia [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property userStatusOverview 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -418,27 +423,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md index ec52507629fc7..39137b9d69ee2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfiguration --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfiguration Delete navigation property deviceConfigurations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-I [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementDeviceConfiguration -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 deviceConfigurations 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 Remove-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId $deviceConfigurationId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceConfiguration 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md index 8e72e5e9ef3c5..d8e4ba976696f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfigurationAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfigurationAssignment Delete navigation property assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssig [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-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 assignments 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 Remove-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationAssignmentId $deviceConfigurationAssignmentId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationAssignment Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -460,26 +442,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 2d5379e2dedc8..8e92701843bba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Delete navigation property deviceSettingStateSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceSettingStateSummaries 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 Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId -SettingStateDeviceSummaryId $settingStateDeviceSummaryId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -461,26 +443,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 4920f2c5cf610..54b28064f112d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary Delete navigation property deviceConfigurationDeviceStateSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -39,6 +35,16 @@ This cmdlet has the following aliases, Delete navigation property deviceConfigurationDeviceStateSummaries 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-MgDeviceManagementDeviceConfigurationDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatesummary) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md index b2efa6af88b53..31c6b8019131b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfigurationDeviceStatus --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceStatus Delete navigation property deviceStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDev [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-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 deviceStatuses 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 Remove-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationDeviceStatusId $deviceConfigurationDeviceStatusId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationDeviceStatus Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -460,26 +442,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 24297b92304e1..5e5131e35e72f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Delete navigation property deviceStatusOverview for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigur [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property deviceStatusOverview 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -418,27 +423,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatusoverview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md index b4bd2bb078c4c..e24094982c8b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfigurationUserStatus --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfigurationUserStatus Delete navigation property userStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-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 userStatuses 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 Remove-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationUserStatusId $deviceConfigurationUserStatusId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationUserStatus Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -460,26 +442,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index b2b7179573b4d..d8a0852e2aecd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview Delete navigation property userStatusOverview for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurat [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property userStatusOverview 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -418,27 +423,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatusoverview) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md index 47164d3da7fec..9b0461f1aea78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDevice Delete navigation property managedDevices for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementManagedDevice -ManagedDeviceId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementManagedDevice -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 managedDevices for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Remove-MgDeviceManagementManagedDevice 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md index 9a0a7ab53cc2f..bd3ec1ffb6089 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceCategory --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceCategory Delete navigation property deviceCategory for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceCategory?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementManagedDeviceCategory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property deviceCategory for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md index 61d5e41d18951..0b1ee2649bbbd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategorybyref Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceCategoryByRef --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceCategoryByRef Delete ref of navigation property deviceCategory for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceCategoryByRef](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceCategoryByRef?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementManagedDeviceCategoryByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete ref of navigation property deviceCategory for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceCategoryByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategorybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategorybyref) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 62c503bd2ec79..4d331da298169 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecompliancepolicystate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceCompliancePolicyState --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceCompliancePolicyState Delete navigation property deviceCompliancePolicyStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePol [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-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 deviceCompliancePolicyStates for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -439,27 +444,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecompliancepolicystate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md index 4f30c5ace2ac4..526f0519d9caa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceconfigurationstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceConfigurationState --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceConfigurationState Delete navigation property deviceConfigurationStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationSta [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-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 deviceConfigurationStates for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -439,27 +444,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceconfigurationstate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 18cc7d0cf108a..8015cf88fa932 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicelogcollectionrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceLogCollectionRequest --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceLogCollectionRequest Delete navigation property logCollectionRequests for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceLogCollectionRequest?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionR [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject ] [-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 logCollectionRequests for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -401,7 +406,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -439,27 +444,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicelogcollectionrequest) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicelogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md index 31d37070a60b5..cff77457e35c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceuserfromsharedappledevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice Delete user from shared Apple device -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceUserFromSharedAppleDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceUserFromSharedAppleDevice?view=graph-powershell-beta) - ## SYNTAX ### DeleteExpanded (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice -ManagedDeviceId [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Delete @@ -39,7 +35,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentityExpanded @@ -50,7 +45,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice [-AdditionalProperties ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -62,7 +56,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,18 +67,9 @@ This cmdlet has the following aliases, Delete user from shared Apple device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -95,10 +79,6 @@ $params = @{ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice -ManagedDeviceId $managedDeviceId -BodyParameter $params -``` -This example shows how to use the Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -130,7 +110,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -425,7 +405,7 @@ HelpMessage: '' ### -UserPrincipalName - +. ```yaml Type: System.String @@ -506,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. [UserPrincipalName ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -548,26 +528,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceuserfromsharedappledevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceuserfromsharedappledevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 88262f20584eb..0992a32d64f01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceWindowsProtectionState --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceWindowsProtectionState Delete navigation property windowsProtectionState for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionState?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionState [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property windowsProtectionState 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -418,27 +423,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceWindowsProtectionState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 459bebbccb33a..bb8d40e84511e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwa Delete navigation property detectedMalwareState for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property detectedMalwareState 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -440,27 +445,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md index b7d35b3ea8547..4c5fdf9672b14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementMobileAppTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementMobileAppTroubleshootingEvent Delete navigation property mobileAppTroubleshootingEvents for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshooting [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEvent -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 mobileAppTroubleshootingEvents for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -``` -This example shows how to use the Remove-MgDeviceManagementMobileAppTroubleshootingEvent 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 4b5e8d72db0e7..10d8cc85c1d75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReq Delete navigation property appLogCollectionRequests for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property appLogCollectionRequests for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -AppLogCollectionRequestId $appLogCollectionRequestId -``` -This example shows how to use the Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. - - ## PARAMETERS ### -AppLogCollectionRequestId @@ -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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -461,26 +443,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md index 312457046c69d..543858a2aa2da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementNotificationMessageTemplate --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementNotificationMessageTemplate Delete navigation property notificationMessageTemplates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplat [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementNotificationMessageTemplate -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 notificationMessageTemplates 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 Remove-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplateId $notificationMessageTemplateId -``` -This example shows how to use the Remove-MgDeviceManagementNotificationMessageTemplate 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 4cd22eb59499a..0a6e024dbafd9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotification Delete navigation property localizedNotificationMessages for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property localizedNotificationMessages 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 Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId -LocalizedNotificationMessageId $localizedNotificationMessageId -``` -This example shows how to use the Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -461,26 +443,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md index c5c10bf3d1e7e..7cf76559c2344 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementtroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementTroubleshootingEvent Delete navigation property troubleshootingEvents for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEv [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementTroubleshootingEvent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,13 +44,15 @@ This cmdlet has the following aliases, Delete navigation property troubleshootingEvents for deviceManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -387,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -425,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementtroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 9725abcc85a53..0bfc282b302fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionapplearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property windowsInformationProtectionAppLearningSummaries 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 Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -WindowsInformationProtectionAppLearningSummaryId $windowsInformationProtectionAppLearningSummaryId -``` -This example shows how to use the Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Cmdlet. - - ## PARAMETERS ### -Break @@ -402,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -440,26 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionapplearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 911c4ab737c43..4c4701bcb3879 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSumma Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property windowsInformationProtectionNetworkLearningSummaries 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 Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -WindowsInformationProtectionNetworkLearningSummaryId $windowsInformationProtectionNetworkLearningSummaryId -``` -This example shows how to use the Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. - - ## PARAMETERS ### -Break @@ -402,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -440,26 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md index 6798713a19ca4..bcfa9232b8f8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementWindowsMalwareInformation --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementWindowsMalwareInformation Delete navigation property windowsMalwareInformation for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementWindowsMalwareInformation -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 windowsMalwareInformation for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId $windowsMalwareInformationId -``` -This example shows how to use the Remove-MgDeviceManagementWindowsMalwareInformation 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -438,26 +420,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 478eea9d7ba07..d8a585f22fcbc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Delete navigation property deviceMalwareStates for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceMalwareStates for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId -MalwareStateForWindowsDeviceId $malwareStateForWindowsDeviceId -``` -This example shows how to use the Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState 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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -461,26 +443,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md index 02ce10325f5c6..a39514d852991 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/request-mgdevicemanagementmanageddeviceremoteassistance Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Request-MgDeviceManagementManagedDeviceRemoteAssistance --- @@ -15,9 +15,6 @@ title: Request-MgDeviceManagementManagedDeviceRemoteAssistance Request remote assistance -> [!NOTE] -> To view the beta release of this cmdlet, view [Request-MgBetaDeviceManagementManagedDeviceRemoteAssistance](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Request-MgBetaDeviceManagementManagedDeviceRemoteAssistance?view=graph-powershell-beta) - ## SYNTAX ### Request (Default) @@ -27,7 +24,6 @@ Request-MgDeviceManagementManagedDeviceRemoteAssistance -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RequestViaIdentity @@ -37,7 +33,6 @@ Request-MgDeviceManagementManagedDeviceRemoteAssistance -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Request remote assistance -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Request-MgDeviceManagementManagedDeviceRemoteAssistance -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Request-MgDeviceManagementManagedDeviceRemoteAssistance Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Request-MgDeviceManagementManagedDeviceRemoteAssistance](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/request-mgdevicemanagementmanageddeviceremoteassistance) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/request-mgdevicemanagementmanageddeviceremoteassistance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md index 40b9633bdd38a..735ff66c71d38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/reset-mgdevicemanagementmanageddevicepasscode Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Reset-MgDeviceManagementManagedDevicePasscode --- @@ -15,9 +15,6 @@ title: Reset-MgDeviceManagementManagedDevicePasscode Reset passcode -> [!NOTE] -> To view the beta release of this cmdlet, view [Reset-MgBetaDeviceManagementManagedDevicePasscode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Reset-MgBetaDeviceManagementManagedDevicePasscode?view=graph-powershell-beta) - ## SYNTAX ### Reset (Default) @@ -27,7 +24,6 @@ Reset-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ResetViaIdentity @@ -37,7 +33,6 @@ Reset-MgDeviceManagementManagedDevicePasscode -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Reset passcode -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Reset-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Reset-MgDeviceManagementManagedDevicePasscode Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Reset-MgDeviceManagementManagedDevicePasscode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/reset-mgdevicemanagementmanageddevicepasscode) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/reset-mgdevicemanagementmanageddevicepasscode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md index f35161a2ddef6..5309b09b8d8b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restart-mgdevicemanagementmanageddevicenow Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Restart-MgDeviceManagementManagedDeviceNow --- @@ -15,9 +15,6 @@ title: Restart-MgDeviceManagementManagedDeviceNow Reboot device -> [!NOTE] -> To view the beta release of this cmdlet, view [Restart-MgBetaDeviceManagementManagedDeviceNow](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Restart-MgBetaDeviceManagementManagedDeviceNow?view=graph-powershell-beta) - ## SYNTAX ### Reboot (Default) @@ -27,7 +24,6 @@ Restart-MgDeviceManagementManagedDeviceNow -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RebootViaIdentity @@ -37,7 +33,6 @@ Restart-MgDeviceManagementManagedDeviceNow -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Reboot device -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Restart-MgDeviceManagementManagedDeviceNow -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Restart-MgDeviceManagementManagedDeviceNow Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Restart-MgDeviceManagementManagedDeviceNow](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restart-mgdevicemanagementmanageddevicenow) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restart-mgdevicemanagementmanageddevicenow) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md index f8cbac3cb98ad..e85b97dbe9901 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restore-mgdevicemanagementmanageddevicepasscode Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Restore-MgDeviceManagementManagedDevicePasscode --- @@ -15,9 +15,6 @@ title: Restore-MgDeviceManagementManagedDevicePasscode Recover passcode -> [!NOTE] -> To view the beta release of this cmdlet, view [Restore-MgBetaDeviceManagementManagedDevicePasscode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Restore-MgBetaDeviceManagementManagedDevicePasscode?view=graph-powershell-beta) - ## SYNTAX ### Recover (Default) @@ -27,7 +24,6 @@ Restore-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RecoverViaIdentity @@ -37,7 +33,6 @@ Restore-MgDeviceManagementManagedDevicePasscode -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Recover passcode -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Restore-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Restore-MgDeviceManagementManagedDevicePasscode Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Restore-MgDeviceManagementManagedDevicePasscode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restore-mgdevicemanagementmanageddevicepasscode) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restore-mgdevicemanagementmanageddevicepasscode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md index 056acde2866a0..58c03442b23f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/send-mgdevicemanagementnotificationmessagetemplatetestmessage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgDeviceManagementNotificationMessageTemplateTestMessage --- @@ -15,9 +15,6 @@ title: Send-MgDeviceManagementNotificationMessageTemplateTestMessage Sends test message using the specified notificationMessageTemplate in the default locale -> [!NOTE] -> To view the beta release of this cmdlet, view [Send-MgBetaDeviceManagementNotificationMessageTemplateTestMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Send-MgBetaDeviceManagementNotificationMessageTemplateTestMessage?view=graph-powershell-beta) - ## SYNTAX ### Send (Default) @@ -28,7 +25,6 @@ Send-MgDeviceManagementNotificationMessageTemplateTestMessage [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -39,7 +35,6 @@ Send-MgDeviceManagementNotificationMessageTemplateTestMessage [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Sends test message using the specified notificationMessageTemplate in the default locale -**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 Send-MgDeviceManagementNotificationMessageTemplateTestMessage -NotificationMessageTemplateId $notificationMessageTemplateId -``` -This example shows how to use the Send-MgDeviceManagementNotificationMessageTemplateTestMessage Cmdlet. - - ## PARAMETERS ### -Break @@ -381,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -419,26 +401,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Send-MgDeviceManagementNotificationMessageTemplateTestMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/send-mgdevicemanagementnotificationmessagetemplatetestmessage) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/send-mgdevicemanagementnotificationmessagetemplatetestmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md index c9f2662f11fdb..340dff797a186 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdevicecompliancepolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementDeviceCompliancePolicy --- @@ -15,9 +15,6 @@ title: Set-MgDeviceManagementDeviceCompliancePolicy Invoke action assign -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Set-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) - ## SYNTAX ### AssignExpanded (Default) @@ -28,7 +25,7 @@ Set-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-Assignments ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Assign @@ -39,7 +36,6 @@ Set-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -50,7 +46,7 @@ Set-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AssignViaIdentity @@ -61,7 +57,6 @@ Set-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +68,9 @@ This cmdlet has the following aliases, Invoke action assign -**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 @@ -103,10 +89,6 @@ $params = @{ Set-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the Set-MgDeviceManagementDeviceCompliancePolicy Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -138,7 +120,7 @@ HelpMessage: '' ### -Assignments - +. To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -166,7 +148,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -500,7 +482,7 @@ Read-only. [Target ]: Base type for assignment targets. [(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. @@ -508,7 +490,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -546,26 +528,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdevicecompliancepolicy) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md index cb551ae617811..6da155cda80e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdeviceconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementDeviceConfiguration --- @@ -15,9 +15,6 @@ title: Set-MgDeviceManagementDeviceConfiguration Invoke action assign -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Set-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) - ## SYNTAX ### AssignExpanded (Default) @@ -28,7 +25,6 @@ Set-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-Assignments ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Assign @@ -39,7 +35,6 @@ Set-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -50,7 +45,6 @@ Set-MgDeviceManagementDeviceConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentity @@ -61,7 +55,6 @@ Set-MgDeviceManagementDeviceConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +66,9 @@ This cmdlet has the following aliases, Invoke action assign -**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 @@ -103,10 +87,6 @@ $params = @{ Set-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the Set-MgDeviceManagementDeviceConfiguration Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -138,7 +118,7 @@ HelpMessage: '' ### -Assignments - +. To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -166,7 +146,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -500,7 +480,7 @@ Read-only. [Target ]: Base type for assignment targets. [(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. @@ -508,7 +488,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -546,26 +526,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdeviceconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md index e7f4cf2bcded7..bbc3802fd007b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementmanageddevicecategorybyref Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementManagedDeviceCategoryByRef --- @@ -15,9 +15,6 @@ title: Set-MgDeviceManagementManagedDeviceCategoryByRef Update the ref of navigation property deviceCategory in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementManagedDeviceCategoryByRef](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Set-MgBetaDeviceManagementManagedDeviceCategoryByRef?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -28,7 +25,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId -Odat [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -39,7 +35,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -50,7 +45,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -61,7 +55,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Update the ref of navigation property deviceCategory in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -104,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -321,7 +324,7 @@ HelpMessage: '' ### -OdataType - +. ```yaml Type: System.String @@ -508,13 +511,13 @@ 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. - OdataId ``: The entity reference URL of the resource. + OdataId : The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. [OdataType ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -552,27 +555,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementManagedDeviceCategoryByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementmanageddevicecategorybyref) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementmanageddevicecategorybyref) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md index 594dd1a1edd72..21f182c3f1ce4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/skip-mgdevicemanagementmanageddeviceactivationlock Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Skip-MgDeviceManagementManagedDeviceActivationLock --- @@ -15,9 +15,6 @@ title: Skip-MgDeviceManagementManagedDeviceActivationLock Bypass activation lock -> [!NOTE] -> To view the beta release of this cmdlet, view [Skip-MgBetaDeviceManagementManagedDeviceActivationLock](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Skip-MgBetaDeviceManagementManagedDeviceActivationLock?view=graph-powershell-beta) - ## SYNTAX ### Bypass (Default) @@ -27,7 +24,6 @@ Skip-MgDeviceManagementManagedDeviceActivationLock -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### BypassViaIdentity @@ -37,7 +33,6 @@ Skip-MgDeviceManagementManagedDeviceActivationLock -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Bypass activation lock -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Skip-MgDeviceManagementManagedDeviceActivationLock -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Skip-MgDeviceManagementManagedDeviceActivationLock Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Skip-MgDeviceManagementManagedDeviceActivationLock](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/skip-mgdevicemanagementmanageddeviceactivationlock) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/skip-mgdevicemanagementmanageddeviceactivationlock) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md index 69f09e8dc75bb..e91e5ced4ff04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/sync-mgdevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Sync-MgDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: Sync-MgDeviceManagementManagedDevice Invoke action syncDevice -> [!NOTE] -> To view the beta release of this cmdlet, view [Sync-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Sync-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### Sync (Default) @@ -27,7 +24,6 @@ Sync-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeaders [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SyncViaIdentity @@ -37,7 +33,6 @@ Sync-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Invoke action syncDevice -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement Sync-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId -``` -This example shows how to use the Sync-MgDeviceManagementManagedDevice Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -417,26 +399,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Sync-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/sync-mgdevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/sync-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md index 910e1bb2c95dc..2ba5af55e40be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedge Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgAdminEdge --- @@ -15,9 +15,6 @@ title: Update-MgAdminEdge Update the navigation property edge in admin -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdge](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdge?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgAdminEdge [-ResponseHeadersVariable ] [-AdditionalProperties ] [-InternetExplorerMode ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -36,7 +33,7 @@ Update-MgAdminEdge [-ResponseHeadersVariable ] [-AdditionalProperties [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, Update the navigation property edge in admin +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -380,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: edge +BODYPARAMETER : edge [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -456,7 +463,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [WebUrl ]: The URL of the site. [Status ]: browserSiteListStatus -INTERNETEXPLORERMODE ``: internetExplorerMode +INTERNETEXPLORERMODE : internetExplorerMode [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -531,27 +538,4 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft ## RELATED LINKS -- [Update-MgAdminEdge](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedge) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedge) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md index 7e80ff0e4d055..3f1faa0892b21 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermode Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgAdminEdgeInternetExplorerMode --- @@ -15,9 +15,6 @@ title: Update-MgAdminEdgeInternetExplorerMode Update the navigation property internetExplorerMode in admin -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerMode?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,7 @@ Update-MgAdminEdgeInternetExplorerMode [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-SiteLists ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +34,6 @@ Update-MgAdminEdgeInternetExplorerMode -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +45,16 @@ This cmdlet has the following aliases, Update the navigation property internetExplorerMode in admin +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -381,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: internetExplorerMode +BODYPARAMETER : internetExplorerMode [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -524,27 +530,4 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft ## RELATED LINKS -- [Update-MgAdminEdgeInternetExplorerMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermode) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md index ce112e6dcafcc..5e4cfa8686304 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelist Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgAdminEdgeInternetExplorerModeSiteList --- @@ -15,9 +15,6 @@ title: Update-MgAdminEdgeInternetExplorerModeSiteList Update the properties of a browserSiteList object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +53,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +62,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,18 +74,9 @@ This cmdlet has the following aliases, Update the properties of a browserSiteList object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -101,10 +87,6 @@ $params = @{ Update-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId $browserSiteListId -BodyParameter $params -``` -This example shows how to use the Update-MgAdminEdgeInternetExplorerModeSiteList Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -766,7 +748,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 singleton entity which is used to specify IE mode site list metadata +BODYPARAMETER : A singleton entity which is used to specify IE mode site list metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -835,7 +817,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [WebUrl ]: The URL of the site. [Status ]: browserSiteListStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -870,7 +852,7 @@ INPUTOBJECT ``: Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -881,7 +863,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PUBLISHEDBY ``: identitySet +PUBLISHEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -962,27 +944,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelist) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelist) +- [](https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 83c2415c51ba8..46d931fe0916c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsharedcookie Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie --- @@ -15,9 +15,6 @@ title: Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Update the properties of a browserSharedCookie object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieI [-SourceEnvironment ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +40,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieI [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -58,7 +54,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -68,7 +63,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -80,18 +75,9 @@ This cmdlet has the following aliases, Update the properties of a browserSharedCookie object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -106,10 +92,6 @@ $params = @{ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId -BodyParameter $params -``` -This example shows how to use the Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -850,7 +832,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 ``: browserSharedCookie +BODYPARAMETER : browserSharedCookie [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -903,7 +885,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the cookie was last published. [SourceEnvironment ]: browserSharedCookieSourceEnvironment -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -938,7 +920,7 @@ INPUTOBJECT ``: Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -952,27 +934,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [](https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md index e94d9115e06a2..65c6c82625235 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsite Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgAdminEdgeInternetExplorerModeSiteListSite --- @@ -15,9 +15,6 @@ title: Update-MgAdminEdgeInternetExplorerModeSiteListSite Update the properties of a browserSite object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId [-TargetEnvironment ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -60,7 +56,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -70,7 +66,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -82,18 +78,9 @@ This cmdlet has the following aliases, Update the properties of a browserSite object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BrowserSiteLists.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -108,10 +95,6 @@ $params = @{ Update-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BrowserSiteId $browserSiteId -BodyParameter $params -``` -This example shows how to use the Update-MgAdminEdgeInternetExplorerModeSiteListSite Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -853,7 +836,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Singleton entity which is used to specify IE mode site metadata +BODYPARAMETER : Singleton entity which is used to specify IE mode site metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -907,7 +890,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the site was last published. [TargetEnvironment ]: browserSiteTargetEnvironment -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -942,7 +925,7 @@ INPUTOBJECT ``: Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -956,27 +939,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsite) -- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsite) +- [](https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md index 8e140cf467023..b795c3321f197 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagement Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagement --- @@ -86,7 +86,6 @@ Update-MgDeviceManagement [-ResponseHeadersVariable ] [-AdditionalProper [-WindowsMalwareOverview ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -96,7 +95,6 @@ Update-MgDeviceManagement -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -108,18 +106,9 @@ This cmdlet has the following aliases, Update deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -129,10 +118,6 @@ $params = @{ Update-MgDeviceManagement -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagement Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1849,7 +1834,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. -APPLEPUSHNOTIFICATIONCERTIFICATE ``: Apple push notification certificate. +APPLEPUSHNOTIFICATIONCERTIFICATE : Apple push notification certificate. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1892,7 +1877,7 @@ Read-only. [OldValue ]: Old value. [ResourceId ]: Audit resource's Id. -BODYPARAMETER ``: deviceManagement +BODYPARAMETER : deviceManagement [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2368,11 +2353,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. @@ -3000,7 +2988,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 @@ -3068,7 +3056,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. @@ -3105,6 +3094,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. @@ -5080,7 +5110,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 @@ -5285,6 +5316,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. @@ -6879,7 +6911,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. @@ -7140,8 +7172,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. @@ -8924,7 +8956,7 @@ Read-only. [MacOSOnboarded ]: Partner onboarded for Mac devices. [PartnerState ]: Partner state of this tenant. -CONDITIONALACCESSSETTINGS ``: Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. +CONDITIONALACCESSSETTINGS : Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -9342,11 +9374,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. @@ -9974,7 +10009,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 @@ -10042,7 +10077,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. @@ -10079,6 +10115,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. @@ -12054,7 +12131,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 @@ -12259,6 +12337,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. @@ -13853,7 +13932,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. @@ -14114,8 +14193,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. @@ -14270,7 +14349,7 @@ Read-only. [UserPrincipalName ]: UserPrincipalName. [Version ]: Version of the device configuration. -DEVICECOMPLIANCEPOLICYDEVICESTATESUMMARY ``: deviceCompliancePolicyDeviceStateSummary +DEVICECOMPLIANCEPOLICYDEVICESTATESUMMARY : deviceCompliancePolicyDeviceStateSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -14312,7 +14391,7 @@ Read-only. [SettingName ]: Name of the setting. [UnknownDeviceCount ]: Number of unknown devices -DEVICECONFIGURATIONDEVICESTATESUMMARIES ``: deviceConfigurationDeviceStateSummary +DEVICECONFIGURATIONDEVICESTATESUMMARIES : deviceConfigurationDeviceStateSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -14421,7 +14500,7 @@ Read-only. [WhenPartnerDevicesWillBeMarkedAsNonCompliantDateTime ]: DateTime in UTC when PartnerDevices will be marked as NonCompliant [WhenPartnerDevicesWillBeRemovedDateTime ]: DateTime in UTC when PartnerDevices will be removed -DEVICEPROTECTIONOVERVIEW ``: Hardware information of a given device. +DEVICEPROTECTIONOVERVIEW : Hardware information of a given device. [(Any) ]: This indicates any property can be added to this object. [CleanDeviceCount ]: Indicates number of devices reporting as clean [CriticalFailuresDeviceCount ]: Indicates number of devices with critical failures @@ -14465,7 +14544,7 @@ Read-only. [DeviceImportStatus ]: importedWindowsAutopilotDeviceIdentityImportStatus [DeviceRegistrationId ]: Device Registration ID for successfully added device reported by Device Directory Service(DDS). -INTUNEBRAND ``: intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal. +INTUNEBRAND : intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal. [(Any) ]: This indicates any property can be added to this object. [ContactItEmailAddress ]: Email address of the person/organization responsible for IT support. [ContactItName ]: Name of the person/organization responsible for IT support. @@ -14504,7 +14583,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -MANAGEDDEVICEOVERVIEW ``: Summary data for managed devices +MANAGEDDEVICEOVERVIEW : Summary data for managed devices [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -14937,11 +15016,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. @@ -15569,7 +15651,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 @@ -15637,7 +15719,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. @@ -15674,6 +15757,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. @@ -17649,7 +17773,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 @@ -17854,6 +17979,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. @@ -19448,7 +19574,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. @@ -19709,8 +19835,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. @@ -19852,7 +19978,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. -REPORTS ``: deviceManagementReports +REPORTS : deviceManagementReports [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -19966,13 +20092,13 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -SETTINGS ``: deviceManagementSettings +SETTINGS : deviceManagementSettings [(Any) ]: This indicates any property can be added to this object. [DeviceComplianceCheckinThresholdDays ]: The number of days a device is allowed to go without checking in to remain compliant. [IsScheduledActionEnabled ]: Is feature enabled or not for scheduled action for rule. [SecureByDefault ]: Device should be noncompliant when there is no compliance policy targeted when this is true -SOFTWAREUPDATESTATUSSUMMARY ``: softwareUpdateStatusSummary +SOFTWAREUPDATESTATUSSUMMARY : softwareUpdateStatusSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20289,7 +20415,7 @@ Supports: $filter, $select, $OrderBy. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 -USEREXPERIENCEANALYTICSAPPHEALTHOVERVIEW ``: The user experience analytics category entity contains the scores and insights for the various metrics of a category. +USEREXPERIENCEANALYTICSAPPHEALTHOVERVIEW : The user experience analytics category entity contains the scores and insights for the various metrics of a category. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20599,7 +20725,7 @@ A higher score indicates a healthier device. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 -USEREXPERIENCEANALYTICSOVERVIEW ``: The user experience analytics overview entity contains the overall score and the scores and insights of every metric of all categories. +USEREXPERIENCEANALYTICSOVERVIEW : The user experience analytics overview entity contains the overall score and the scores and insights of every metric of all categories. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20620,13 +20746,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Returned by default. -USEREXPERIENCEANALYTICSSETTINGS ``: The user experience analytics insight is the recomendation to improve the user experience analytics score. +USEREXPERIENCEANALYTICSSETTINGS : The user experience analytics insight is the recomendation to improve the user experience analytics score. [(Any) ]: This indicates any property can be added to this object. [ConfigurationManagerDataConnectorConfigured ]: When TRUE, indicates Tenant attach is configured properly and System Center Configuration Manager (SCCM) tenant attached devices will show up in endpoint analytics reporting. When FALSE, indicates Tenant attach is not configured. FALSE by default. -USEREXPERIENCEANALYTICSWORKFROMANYWHEREHARDWAREREADINESSMETRIC ``: The user experience analytics hardware readiness entity contains account level information about hardware blockers for windows upgrade. +USEREXPERIENCEANALYTICSWORKFROMANYWHEREHARDWAREREADINESSMETRIC : The user experience analytics hardware readiness entity contains account level information about hardware blockers for windows upgrade. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20868,7 +20994,7 @@ Supports: $select, $OrderBy. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 -VIRTUALENDPOINT ``: virtualEndpoint +VIRTUALENDPOINT : virtualEndpoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -21377,11 +21503,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. @@ -22009,7 +22138,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 @@ -22077,7 +22206,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. @@ -22114,6 +22244,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. @@ -24044,7 +24215,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 @@ -24249,6 +24421,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. @@ -26029,7 +26202,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. @@ -26290,8 +26463,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. @@ -26443,7 +26616,7 @@ Read-only. [LastDetectionDateTime ]: Indicates the last time the malware was detected in UTC [Severity ]: Malware severity -WINDOWSMALWAREOVERVIEW ``: Windows device malware overview. +WINDOWSMALWAREOVERVIEW : Windows device malware overview. [(Any) ]: This indicates any property can be added to this object. [MalwareCategorySummary ]: List of device counts per malware category [ActiveMalwareDetectionCount ]: Count of active malware detections for this malware category. @@ -26491,26 +26664,4 @@ Valid values -2147483648 to 2147483647 ## RELATED LINKS -- [Update-MgDeviceManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagement) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagement) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md index eef13bd5295a5..5e250ebc70545 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdetectedapp Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDetectedApp --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDetectedApp Update the navigation property detectedApps in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgDeviceManagementDetectedApp -DetectedAppId [-ResponseHeadersVa [-Publisher ] [-SizeInByte ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,7 @@ Update-MgDeviceManagementDetectedApp -DetectedAppId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +47,7 @@ Update-MgDeviceManagementDetectedApp -InputObject [-Platform ] [-Publisher ] [-SizeInByte ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +57,7 @@ Update-MgDeviceManagementDetectedApp -InputObject -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 detectedApps in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -100,10 +87,6 @@ $params = @{ Update-MgDeviceManagementDetectedApp -DetectedAppId $detectedAppId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDetectedApp Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -689,7 +672,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 managed or unmanaged app that is installed on a managed device. +BODYPARAMETER : A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -1098,11 +1081,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. @@ -1730,7 +1716,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 @@ -1798,7 +1784,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. @@ -1835,6 +1822,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. @@ -3810,7 +3838,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 @@ -4015,6 +4044,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. @@ -5609,7 +5639,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. @@ -5870,8 +5900,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. @@ -5939,7 +5969,7 @@ Read-only [Version ]: Version of the discovered application. Read-only -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -6375,11 +6405,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. @@ -7007,7 +7040,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 @@ -7075,7 +7108,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. @@ -7112,6 +7146,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. @@ -9087,7 +9162,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 @@ -9292,6 +9368,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. @@ -10886,7 +10963,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. @@ -11147,8 +11224,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. @@ -11209,26 +11286,4 @@ Defaults to setting on client device. ## RELATED LINKS -- [Update-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdetectedapp) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md index 9281cb82455e9..f1562b88abdfe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCategory --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCategory Update the navigation property deviceCategories in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgDeviceManagementDeviceCategory -DeviceCategoryId [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgDeviceManagementDeviceCategory -DeviceCategoryId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgDeviceManagementDeviceCategory -InputObject [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgDeviceManagementDeviceCategory -InputObject -BodyParameter [-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 deviceCategories in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -94,10 +80,6 @@ $params = @{ Update-MgDeviceManagementDeviceCategory -DeviceCategoryId $deviceCategoryId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCategory Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -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 ``: Device categories provides a way to organize your devices. +BODYPARAMETER : Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -551,7 +533,7 @@ Read-only. [Description ]: Optional description for the device category. [DisplayName ]: Display name for the device category. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -589,26 +571,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecategory) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md index 41018d94a8bf6..a81429fbffff1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicy --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicy Update the navigation property deviceCompliancePolicies in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -35,7 +32,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +42,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -63,7 +60,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +70,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -85,18 +82,9 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicies 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 @@ -120,10 +108,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicy Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -851,7 +835,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: This is the base class for Compliance policy. +BODYPARAMETER : This is the base class for Compliance policy. Compliance policies are platform specific and individual per-platform compliance policies inherit from here. [(Any) ]: This indicates any property can be added to this object. @@ -959,7 +943,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW ``: deviceComplianceDeviceOverview +DEVICESTATUSOVERVIEW : deviceComplianceDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -971,7 +955,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -1031,7 +1015,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW ``: deviceComplianceUserOverview +USERSTATUSOVERVIEW : deviceComplianceUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1046,26 +1030,4 @@ Read-only. ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicy) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 7c8ed041ae8fb..0ab7c2ed2a75b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyAssignment Update the navigation property assignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -50,7 +46,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +57,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +68,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) | 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 @@ -98,10 +84,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceCompliancePolicyAssignmentId $deviceCompliancePolicyAssignmentId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -543,14 +525,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Device compliance policy assignment. +BODYPARAMETER : Device compliance policy assignment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -588,26 +570,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 94e8ebce3d552..29bc477b31174 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Update the navigation property deviceSettingStateSummaries in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-RemediatedDeviceCount ] [-SettingName ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +53,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +63,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,13 +74,15 @@ This cmdlet has the following aliases, Update the navigation property deviceSettingStateSummaries in deviceManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -744,7 +741,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 ``: Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER : Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -758,7 +755,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -796,27 +793,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index ba20e872c3020..73d4c956e4aba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,18 +49,9 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicyDeviceStateSummary 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 @@ -84,10 +70,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -587,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 ``: deviceCompliancePolicyDeviceStateSummary +BODYPARAMETER : deviceCompliancePolicyDeviceStateSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -604,26 +586,4 @@ Read-only. ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 73eab179c5f5a..04fd20300a160 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Update the navigation property deviceStatuses in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDev [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDev [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +50,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +59,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,18 +71,9 @@ This cmdlet has the following aliases, Update the navigation property deviceStatuses 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 @@ -105,10 +90,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceDeviceStatusId $deviceComplianceDeviceStatusId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -712,7 +693,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 ``: deviceComplianceDeviceStatus +BODYPARAMETER : deviceComplianceDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -724,7 +705,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -762,26 +743,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 7af0c4aaf20d8..22674cde07891 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Update the navigation property deviceStatusOverview in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +49,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +59,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,18 +71,9 @@ This cmdlet has the following aliases, Update the navigation property deviceStatusOverview 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 @@ -105,10 +90,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -685,7 +666,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 ``: deviceComplianceDeviceOverview +BODYPARAMETER : deviceComplianceDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -697,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -735,26 +716,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 3e9609cf09acb..7c6e0fdf17218 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Update the navigation property scheduledActionsForRule in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-RuleName ] [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +61,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Update the navigation property scheduledActionsForRule 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 @@ -99,10 +85,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -574,7 +556,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 ``: Scheduled Action for Rule +BODYPARAMETER : Scheduled Action for Rule [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -590,7 +572,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -638,26 +620,4 @@ Valid values 0 to 8760 ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 6e029e33dbfb7..212fd0e0fb6d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSche Update the navigation property scheduledActionConfigurations in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +39,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +52,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +62,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,18 +73,9 @@ This cmdlet has the following aliases, Update the navigation property scheduledActionConfigurations 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 @@ -106,10 +91,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -DeviceComplianceActionItemId $deviceComplianceActionItemId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. - - ## PARAMETERS ### -ActionType @@ -660,7 +641,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 ``: Scheduled Action Configuration +BODYPARAMETER : Scheduled Action Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -670,7 +651,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -708,26 +689,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 4287e1c46f2db..0ea2d931ccab9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -45,7 +41,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -61,7 +56,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -73,7 +67,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -85,18 +78,9 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicySettingStateSummaries 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 @@ -116,10 +100,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -303,7 +283,7 @@ HelpMessage: '' ### -DeviceComplianceSettingStates - +. To construct, see NOTES section for DEVICECOMPLIANCESETTINGSTATES properties and create a hash table. ```yaml @@ -805,7 +785,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 ``: Device Compilance Policy Setting State summary across the account. +BODYPARAMETER : Device Compilance Policy Setting State summary across the account. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -849,7 +829,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: The User PrincipalName that is being reported -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -887,26 +867,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 6a6e263c71571..bd4dd6e0850dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceC Update the navigation property deviceComplianceSettingStates in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-UserEmail ] [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +53,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +64,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,18 +76,9 @@ This cmdlet has the following aliases, Update the navigation property deviceComplianceSettingStates 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 @@ -111,10 +99,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -DeviceComplianceSettingStateId $deviceComplianceSettingStateId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -826,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. -BODYPARAMETER ``: Device compliance setting State for a given device. +BODYPARAMETER : Device compliance setting State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -842,7 +826,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: The User PrincipalName that is being reported -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -880,26 +864,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index c331098418d11..62e2eefa6f5bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyUserStatus --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyUserStatus Update the navigation property userStatuses in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolic [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolic [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +48,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +57,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +69,9 @@ This cmdlet has the following aliases, Update the navigation property userStatuses 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 @@ -101,10 +86,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceUserStatusId $deviceComplianceUserStatusId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyUserStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -654,7 +635,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 ``: deviceComplianceUserStatus +BODYPARAMETER : deviceComplianceUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -664,7 +645,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -702,26 +683,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 5dafe738afa41..2f1d7549e08d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Update the navigation property userStatusOverview in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceComplia [-LastUpdateDateTime ] [-NotApplicableCount ] [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceComplia -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +49,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +59,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +71,9 @@ This cmdlet has the following aliases, Update the navigation property userStatusOverview 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 @@ -103,10 +90,6 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -683,7 +666,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 ``: deviceComplianceUserOverview +BODYPARAMETER : deviceComplianceUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -695,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending Users [SuccessCount ]: Number of succeeded Users -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -733,26 +716,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md index c5c3c7a6ef9c3..ccb977182f734 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfiguration --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfiguration Update the navigation property deviceConfigurations in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -34,7 +31,7 @@ Update-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-UserStatuses ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,7 @@ Update-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -61,7 +58,7 @@ Update-MgDeviceManagementDeviceConfiguration -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -71,7 +68,7 @@ Update-MgDeviceManagementDeviceConfiguration -InputObject [-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 deviceConfigurations 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 @@ -110,10 +98,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfiguration Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -810,7 +794,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: Device Configuration. +BODYPARAMETER : Device Configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -901,7 +885,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW ``: deviceConfigurationDeviceOverview +DEVICESTATUSOVERVIEW : deviceConfigurationDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -913,7 +897,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -957,7 +941,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW ``: deviceConfigurationUserOverview +USERSTATUSOVERVIEW : deviceConfigurationUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -972,26 +956,4 @@ Read-only. ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md index 31edbb054e5ff..5ba5efa2dcfd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfigurationAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfigurationAssignment Update the navigation property assignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssig [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,6 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssig [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,7 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +55,7 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +67,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) | 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 @@ -96,10 +83,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationAssignmentId $deviceConfigurationAssignmentId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfigurationAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -541,14 +524,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: The device configuration assignment entity assigns an AAD group to a specific device configuration. +BODYPARAMETER : The device configuration assignment entity assigns an AAD group to a specific device configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -586,26 +569,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 80cfe111c71b9..7c2bf2cc29b5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Update the navigation property deviceSettingStateSummaries in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-RemediatedDeviceCount ] [-SettingName ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +53,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +63,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,18 +74,9 @@ This cmdlet has the following aliases, Update the navigation property deviceSettingStateSummaries 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 @@ -109,10 +95,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId -SettingStateDeviceSummaryId $settingStateDeviceSummaryId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -770,7 +752,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 ``: Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER : Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -784,7 +766,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -822,26 +804,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 93ca34c51d179..c940eb63779e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatesummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary [-ResponseHeaders [-NotApplicableDeviceCount ] [-RemediatedDeviceCount ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,18 +48,9 @@ This cmdlet has the following aliases, Update the navigation property deviceConfigurationDeviceStateSummaries 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 @@ -80,10 +67,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -541,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 ``: deviceConfigurationDeviceStateSummary +BODYPARAMETER : deviceConfigurationDeviceStateSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -556,26 +539,4 @@ Read-only. ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatesummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 66e8fa8a2f494..b1d1d7e18e3f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfigurationDeviceStatus --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceStatus Update the navigation property deviceStatuses in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDev [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDev [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +50,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +59,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,18 +71,9 @@ This cmdlet has the following aliases, Update the navigation property deviceStatuses 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 @@ -105,10 +90,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationDeviceStatusId $deviceConfigurationDeviceStatusId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -712,7 +693,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 ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -724,7 +705,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -762,26 +743,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 885aa87944018..847ae889b444c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Update the navigation property deviceStatusOverview in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigur [-LastUpdateDateTime ] [-NotApplicableCount ] [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigur [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +71,9 @@ This cmdlet has the following aliases, Update the navigation property deviceStatusOverview 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 @@ -105,10 +90,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -685,7 +666,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 ``: deviceConfigurationDeviceOverview +BODYPARAMETER : deviceConfigurationDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -697,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -735,26 +716,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md index d15b88702dd40..aeedd9a65566c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfigurationUserStatus --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfigurationUserStatus Update the navigation property userStatuses in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,6 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +58,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -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 userStatuses 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 @@ -101,10 +87,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationUserStatusId $deviceConfigurationUserStatusId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfigurationUserStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -654,7 +636,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 ``: deviceConfigurationUserStatus +BODYPARAMETER : deviceConfigurationUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -664,7 +646,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -702,26 +684,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 474d612c860b4..d4fe0a898f80e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatusoverview Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceConfigurationUserStatusOverview --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceConfigurationUserStatusOverview Update the navigation property userStatusOverview in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurat [-LastUpdateDateTime ] [-NotApplicableCount ] [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurat -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +49,6 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +59,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +71,9 @@ This cmdlet has the following aliases, Update the navigation property userStatusOverview 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 @@ -103,10 +90,6 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceConfigurationUserStatusOverview Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -683,7 +666,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 ``: deviceConfigurationUserOverview +BODYPARAMETER : deviceConfigurationUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -695,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending Users [SuccessCount ]: Number of succeeded Users -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -733,26 +716,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceConfigurationUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatusoverview) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md index 98a4b88bb78ce..81e44bb1525d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementManagedDevice --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementManagedDevice Update the navigation property managedDevices in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) - ## SYNTAX ### Update1 (Default) @@ -26,7 +23,7 @@ Update the navigation property managedDevices in deviceManagement Update-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-PassThru] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-PassThru] [-WhatIf] [-Confirm] ``` ### UpdateExpanded @@ -50,7 +47,7 @@ Update-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeade [-Users ] [-WindowsProtectionState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -60,7 +57,7 @@ Update-MgDeviceManagementManagedDevice -ManagedDeviceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -85,7 +82,7 @@ Update-MgDeviceManagementManagedDevice -InputObject [-Users ] [-WindowsProtectionState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity1 @@ -95,7 +92,6 @@ Update-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PassThru] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -105,7 +101,7 @@ Update-MgDeviceManagementManagedDevice -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -117,13 +113,15 @@ This cmdlet has the following aliases, Update the navigation property managedDevices in deviceManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -1085,7 +1083,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 ``: Devices that are managed or pre-enrolled through Intune. +BODYPARAMETER : Devices that are managed or pre-enrolled through Intune. Limited support for $filter: Only properties whose descriptions mention support for $filter may be used, and combinations of those filtered properties must use 'and', not 'or'. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -1488,11 +1486,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. @@ -2120,7 +2121,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 @@ -2188,7 +2189,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. @@ -2225,6 +2227,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. @@ -4200,7 +4243,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 @@ -4405,6 +4449,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. @@ -5999,7 +6044,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. @@ -6260,8 +6305,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. @@ -6319,7 +6364,7 @@ Defaults to setting on client device. [TamperProtectionEnabled ]: When TRUE indicates the Windows Defender tamper protection feature is enabled, when FALSE indicates the Windows Defender tamper protection feature is not enabled. Defaults to setting on client device. -CONFIGURATIONMANAGERCLIENTENABLEDFEATURES ``: configuration Manager client enabled features +CONFIGURATIONMANAGERCLIENTENABLEDFEATURES : configuration Manager client enabled features [(Any) ]: This indicates any property can be added to this object. [CompliancePolicy ]: Whether compliance policy is managed by Intune [DeviceConfiguration ]: Whether device configuration is managed by Intune @@ -6328,7 +6373,7 @@ CONFIGURATIONMANAGERCLIENTENABLEDFEATURES `]: Whether resource access is managed by Intune [WindowsUpdateForBusiness ]: Whether Windows Update for Business is managed by Intune -DEVICECATEGORY ``: Device categories provides a way to organize your devices. +DEVICECATEGORY : Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -6387,7 +6432,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -DEVICEHEALTHATTESTATIONSTATE ``: deviceHealthAttestationState +DEVICEHEALTHATTESTATIONSTATE : deviceHealthAttestationState [(Any) ]: This indicates any property can be added to this object. [AttestationIdentityKey ]: TWhen an Attestation Identity Key (AIK) is present on a device, it indicates that the device has an endorsement key (EK) certificate. [BitLockerStatus ]: On or Off of BitLocker Drive Encryption @@ -6434,7 +6479,7 @@ Possible values are 'enabled', 'disabled' and 'notApplicable'. Default value is 'notApplicable'. [WindowsPe ]: Operating system running with limited services that is used to prepare a computer for Windows -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -6745,11 +6790,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. @@ -7377,7 +7425,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 @@ -7445,7 +7493,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. @@ -7482,6 +7531,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. @@ -9457,7 +9547,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 @@ -9662,6 +9753,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. @@ -11442,7 +11534,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. @@ -11703,8 +11795,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. @@ -11714,7 +11806,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? -WINDOWSPROTECTIONSTATE ``: Device protection status entity. +WINDOWSPROTECTIONSTATE : Device protection status entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -11766,27 +11858,4 @@ Defaults to setting on client device. ## RELATED LINKS -- [Update-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevice) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md index 3034f2079fa93..db9a0636c04b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementManagedDeviceCategory --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementManagedDeviceCategory Update the navigation property deviceCategory in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceCategory?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgDeviceManagementManagedDeviceCategory -InputObject ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgDeviceManagementManagedDeviceCategory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,6 +66,16 @@ This cmdlet has the following aliases, Update the navigation property deviceCategory in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -515,7 +520,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 ``: Device categories provides a way to organize your devices. +BODYPARAMETER : Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -524,7 +529,7 @@ Read-only. [Description ]: Optional description for the device category. [DisplayName ]: Display name for the device category. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -562,27 +567,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementManagedDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecategory) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 7b9889fef026a..ec36b3cc8175f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecompliancepolicystate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementManagedDeviceCompliancePolicyState --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementManagedDeviceCompliancePolicyState Update the navigation property deviceCompliancePolicyStates in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePol [-SettingStates ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePol [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +58,7 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicyStates in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -515,7 +521,7 @@ HelpMessage: '' ### -SettingStates - +. To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml @@ -651,7 +657,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 ``: Device Compliance Policy State for a given device. +BODYPARAMETER : Device Compliance Policy State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -677,7 +683,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -732,27 +738,4 @@ SETTINGSTATES : . ## RELATED LINKS -- [Update-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecompliancepolicystate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md index 7dd38cb7dc20f..3ede4f961cd48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddeviceconfigurationstate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementManagedDeviceConfigurationState --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementManagedDeviceConfigurationState Update the navigation property deviceConfigurationStates in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationSta [-SettingStates ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationSta [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +58,7 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property deviceConfigurationStates in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -515,7 +521,7 @@ HelpMessage: '' ### -SettingStates - +. To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml @@ -651,7 +657,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 ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -677,7 +683,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -732,27 +738,4 @@ SETTINGSTATES : . ## RELATED LINKS -- [Update-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddeviceconfigurationstate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md index d5308104bacdf..feb355bcb0960 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicelogcollectionrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementManagedDeviceLogCollectionRequest --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementManagedDeviceLogCollectionRequest Update the navigation property logCollectionRequests in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceLogCollectionRequest?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionR [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionR [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +50,7 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject ] [-SizeInKb ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property logCollectionRequests in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -708,7 +713,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 ``: Windows Log Collection request entity. +BODYPARAMETER : Windows Log Collection request entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -722,7 +727,7 @@ Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 [Status ]: AppLogUploadStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -760,27 +765,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementManagedDeviceLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicelogcollectionrequest) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicelogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md index db246cd701b13..1e8d038386b5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsdeviceaccount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount Invoke action updateWindowsDeviceAccount -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceWindowsDeviceAccount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceWindowsDeviceAccount?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +47,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +57,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Invoke action updateWindowsDeviceAccount -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -107,10 +91,6 @@ $params = @{ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -ManagedDeviceId $managedDeviceId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -142,7 +122,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -519,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 ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [UpdateWindowsDeviceAccountActionParameter ]: updateWindowsDeviceAccountActionParameter [(Any) ]: This indicates any property can be added to this object. @@ -532,7 +512,7 @@ BODYPARAMETER `]: [SessionInitiationProtocalAddress ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -567,7 +547,7 @@ INPUTOBJECT ``: Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -UPDATEWINDOWSDEVICEACCOUNTACTIONPARAMETER ``: updateWindowsDeviceAccountActionParameter +UPDATEWINDOWSDEVICEACCOUNTACTIONPARAMETER : updateWindowsDeviceAccountActionParameter [(Any) ]: This indicates any property can be added to this object. [CalendarSyncEnabled ]: [DeviceAccount ]: windowsDeviceAccount @@ -581,26 +561,4 @@ UPDATEWINDOWSDEVICEACCOUNTACTIONPARAMETER ` [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionState?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -36,7 +33,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId ] [-TamperProtectionEnabled] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +43,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -66,7 +63,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState [-RebootRequired] [-SignatureUpdateOverdue] [-SignatureVersion ] [-TamperProtectionEnabled] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -77,7 +74,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -89,6 +85,16 @@ This cmdlet has the following aliases, Update the navigation property windowsProtectionState in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -1081,7 +1087,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 ``: Device protection status entity. +BODYPARAMETER : Device protection status entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1144,7 +1150,7 @@ Read-only. [State ]: Malware current status [ThreatState ]: Malware threat status -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -1182,27 +1188,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementManagedDeviceWindowsProtectionState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 115b0266ebe32..57eda1384a981 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwa Update the navigation property detectedMalwareState in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +40,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -60,7 +56,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -71,7 +66,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -83,6 +77,16 @@ This cmdlet has the following aliases, Update the navigation property detectedMalwareState in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalInformationUrl @@ -767,7 +771,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 ``: Malware detection entity. +BODYPARAMETER : Malware detection entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -782,7 +786,7 @@ Read-only. [State ]: Malware current status [ThreatState ]: Malware threat status -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -820,27 +824,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md index 5ddb74bd81b97..feb6f4be37d9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementMobileAppTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementMobileAppTroubleshootingEvent Update the navigation property mobileAppTroubleshootingEvents in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshooting [-AppLogCollectionRequests ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +35,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshooting -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +46,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -InputObject ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +56,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +68,9 @@ This cmdlet has the following aliases, Update the navigation property mobileAppTroubleshootingEvents in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -92,10 +80,6 @@ $params = @{ Update-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementMobileAppTroubleshootingEvent Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -519,7 +503,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -BODYPARAMETER ``: mobileAppTroubleshootingEvent +BODYPARAMETER : mobileAppTroubleshootingEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -531,7 +515,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -569,26 +553,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 6e0447c50a99b..00c166c46c0e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReq Update the navigation property appLogCollectionRequests in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ErrorMessage ] [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +60,6 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,18 +71,9 @@ This cmdlet has the following aliases, Update the navigation property appLogCollectionRequests in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -103,10 +89,6 @@ completedDateTime = [System.DateTime]::Parse("2016-12-31T23:58:52.3534526-08:00" Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -AppLogCollectionRequestId $appLogCollectionRequestId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -629,7 +611,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 for AppLogCollectionRequest contains all logs values. +BODYPARAMETER : Entity for AppLogCollectionRequest contains all logs values. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -638,7 +620,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -676,26 +658,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md index d658a8374d4cc..7de0c90f85d8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementNotificationMessageTemplate --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementNotificationMessageTemplate Update the navigation property notificationMessageTemplates in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplat [-RoleScopeTagIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplat -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgDeviceManagementNotificationMessageTemplate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgDeviceManagementNotificationMessageTemplate -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 notificationMessageTemplates 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 @@ -104,10 +90,6 @@ $params = @{ Update-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplateId $notificationMessageTemplateId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementNotificationMessageTemplate Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -661,7 +643,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 ``: Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. +BODYPARAMETER : Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance. [(Any) ]: This indicates any property can be added to this object. @@ -684,7 +666,7 @@ To unset, set this property to true on another Localized Notification Message. [Subject ]: The Message Template Subject. [RoleScopeTagIds ]: List of Scope Tags for this Entity instance. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -733,26 +715,4 @@ To unset, set this property to true on another Localized Notification Message. ## RELATED LINKS -- [Update-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index b5d59ca32372b..8da9118b6870c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotification Update the navigation property localizedNotificationMessages in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-LastModifiedDateTime ] [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +49,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +72,9 @@ This cmdlet has the following aliases, Update the navigation property localizedNotificationMessages 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 @@ -100,10 +88,6 @@ $params = @{ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId -LocalizedNotificationMessageId $localizedNotificationMessageId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -655,7 +639,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 text content of a Notification Message Template for the specified locale. +BODYPARAMETER : The text content of a Notification Message Template for the specified locale. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -667,7 +651,7 @@ To unset, set this property to true on another Localized Notification Message. [MessageTemplate ]: The Message Template content. [Subject ]: The Message Template Subject. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -705,26 +689,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md index 4e7cb300494e6..20baedb546a52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementtroubleshootingevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementTroubleshootingEvent --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementTroubleshootingEvent Update the navigation property troubleshootingEvents in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEv [-EventDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,6 @@ Update-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEv [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -50,7 +45,6 @@ Update-MgDeviceManagementTroubleshootingEvent -InputObject ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +55,6 @@ Update-MgDeviceManagementTroubleshootingEvent -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,13 +66,15 @@ This cmdlet has the following aliases, Update the navigation property troubleshootingEvents in deviceManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -522,14 +517,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Event representing an general failure. +BODYPARAMETER : Event representing an general failure. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [CorrelationId ]: Id used for tracing the failure in the service. [EventDateTime ]: Time when the event occurred . -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -567,27 +562,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementtroubleshootingevent) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 361a75b9f0604..eb0130fedbd67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionapplearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ApplicationType ] [-DeviceCount ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,7 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ApplicationType ] [-DeviceCount ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +61,6 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Update the navigation property windowsInformationProtectionAppLearningSummaries 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 @@ -101,10 +87,6 @@ $params = @{ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -WindowsInformationProtectionAppLearningSummaryId $windowsInformationProtectionAppLearningSummaryId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -573,7 +555,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 ``: Windows Information Protection AppLearning Summary entity. +BODYPARAMETER : Windows Information Protection AppLearning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -581,7 +563,7 @@ Read-only. [ApplicationType ]: Possible types of Application [DeviceCount ]: Device Count -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -619,26 +601,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionapplearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 7a8546e5efdcd..ae0756d455568 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSumma Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-AdditionalProperties ] [-DeviceCount ] [-Id ] [-Url ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -51,7 +47,7 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-AdditionalProperties ] [-DeviceCount ] [-Id ] [-Url ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +59,6 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +70,9 @@ This cmdlet has the following aliases, Update the navigation property windowsInformationProtectionNetworkLearningSummaries 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 @@ -98,10 +84,6 @@ $params = @{ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -WindowsInformationProtectionNetworkLearningSummaryId $windowsInformationProtectionNetworkLearningSummaryId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -543,14 +525,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Windows Information Protection Network learning Summary entity. +BODYPARAMETER : Windows Information Protection Network learning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [DeviceCount ]: Device Count [Url ]: Website url -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -588,26 +570,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md index 65940b22eef5c..4ec7ab4632f3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementWindowsMalwareInformation --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementWindowsMalwareInformation Update the navigation property windowsMalwareInformation in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId [-Id ] [-LastDetectionDateTime ] [-Severity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -InputObject ] [-LastDetectionDateTime ] [-Severity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +72,9 @@ This cmdlet has the following aliases, Update the navigation property windowsMalwareInformation in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -101,10 +89,6 @@ $params = @{ Update-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId $windowsMalwareInformationId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementWindowsMalwareInformation Cmdlet. - - ## PARAMETERS ### -AdditionalInformationUrl @@ -655,7 +639,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 ``: Malware information entity. +BODYPARAMETER : Malware information entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -684,7 +668,7 @@ Read-only. [LastStateChangeDateTime ]: The last time this particular threat was changed [ThreatState ]: Malware threat status -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -722,26 +706,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index cbd7f5e187f0d..37c8b02e3be72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Update the navigation property deviceMalwareStates in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,7 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +52,6 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +62,7 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,18 +74,9 @@ This cmdlet has the following aliases, Update the navigation property deviceMalwareStates in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement @@ -106,10 +92,6 @@ $params = @{ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId -MalwareStateForWindowsDeviceId $malwareStateForWindowsDeviceId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -686,7 +668,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 ``: Malware state for a windows device +BODYPARAMETER : Malware state for a windows device [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -697,7 +679,7 @@ Read-only. [LastStateChangeDateTime ]: The last time this particular threat was changed [ThreatState ]: Malware threat status -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -735,26 +717,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) From 3d1c2044d0f962bd4f60c44f1f73ca95779e8c50 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:13:33 +0000 Subject: [PATCH 11/17] Escaped disallowed html tags --- .../Clear-MgDeviceManagementManagedDevice.md | 26 +++++- ...MgDeviceManagementManagedDeviceLostMode.md | 24 +++++- .../Find-MgDeviceManagementManagedDevice.md | 24 +++++- .../Get-MgAdminEdge.md | 22 +++++ .../Get-MgAdminEdgeInternetExplorerMode.md | 22 +++++ ...MgAdminEdgeInternetExplorerModeSiteList.md | 24 +++++- ...inEdgeInternetExplorerModeSiteListCount.md | 22 +++++ ...nternetExplorerModeSiteListSharedCookie.md | 24 +++++- ...etExplorerModeSiteListSharedCookieCount.md | 24 +++++- ...minEdgeInternetExplorerModeSiteListSite.md | 24 +++++- ...geInternetExplorerModeSiteListSiteCount.md | 24 +++++- .../Get-MgDeviceManagement.md | 22 +++++ .../Get-MgDeviceManagementDetectedApp.md | 24 +++++- .../Get-MgDeviceManagementDetectedAppCount.md | 22 +++++ ...eviceManagementDetectedAppManagedDevice.md | 24 +++++- ...ManagementDetectedAppManagedDeviceCount.md | 24 +++++- .../Get-MgDeviceManagementDeviceCategory.md | 24 +++++- ...t-MgDeviceManagementDeviceCategoryCount.md | 22 +++++ ...gDeviceManagementDeviceCompliancePolicy.md | 24 +++++- ...agementDeviceCompliancePolicyAssignment.md | 24 +++++- ...ntDeviceCompliancePolicyAssignmentCount.md | 24 +++++- ...ceManagementDeviceCompliancePolicyCount.md | 22 +++++ ...mpliancePolicyDeviceSettingStateSummary.md | 24 +++++- ...ncePolicyDeviceSettingStateSummaryCount.md | 24 +++++- ...eviceCompliancePolicyDeviceStateSummary.md | 22 +++++ ...ementDeviceCompliancePolicyDeviceStatus.md | 24 +++++- ...DeviceCompliancePolicyDeviceStatusCount.md | 24 +++++- ...iceCompliancePolicyDeviceStatusOverview.md | 24 +++++- ...eCompliancePolicyScheduledActionForRule.md | 24 +++++- ...liancePolicyScheduledActionForRuleCount.md | 24 +++++- ...tionForRuleScheduledActionConfiguration.md | 24 +++++- ...orRuleScheduledActionConfigurationCount.md | 24 +++++- ...viceCompliancePolicySettingStateSummary.md | 24 +++++- ...ompliancePolicySettingStateSummaryCount.md | 22 +++++ ...tateSummaryDeviceComplianceSettingState.md | 24 +++++- ...ummaryDeviceComplianceSettingStateCount.md | 24 +++++- ...agementDeviceCompliancePolicyUserStatus.md | 24 +++++- ...ntDeviceCompliancePolicyUserStatusCount.md | 24 +++++- ...eviceCompliancePolicyUserStatusOverview.md | 24 +++++- ...t-MgDeviceManagementDeviceConfiguration.md | 24 +++++- ...ManagementDeviceConfigurationAssignment.md | 24 +++++- ...ementDeviceConfigurationAssignmentCount.md | 24 +++++- ...eviceManagementDeviceConfigurationCount.md | 22 +++++ ...eConfigurationDeviceSettingStateSummary.md | 24 +++++- ...igurationDeviceSettingStateSummaryCount.md | 24 +++++- ...ntDeviceConfigurationDeviceStateSummary.md | 22 +++++ ...nagementDeviceConfigurationDeviceStatus.md | 24 +++++- ...entDeviceConfigurationDeviceStatusCount.md | 24 +++++- ...DeviceConfigurationDeviceStatusOverview.md | 24 +++++- ...ceConfigurationOmaSettingPlainTextValue.md | 24 +++++- ...ManagementDeviceConfigurationUserStatus.md | 24 +++++- ...ementDeviceConfigurationUserStatusCount.md | 24 +++++- ...ntDeviceConfigurationUserStatusOverview.md | 24 +++++- .../Get-MgDeviceManagementManagedDevice.md | 24 +++++- ...MgDeviceManagementManagedDeviceCategory.md | 24 +++++- ...iceManagementManagedDeviceCategoryByRef.md | 24 +++++- ...ementManagedDeviceCompliancePolicyState.md | 24 +++++- ...ManagedDeviceCompliancePolicyStateCount.md | 24 +++++- ...nagementManagedDeviceConfigurationState.md | 24 +++++- ...entManagedDeviceConfigurationStateCount.md | 24 +++++- ...et-MgDeviceManagementManagedDeviceCount.md | 22 +++++ ...gementManagedDeviceLogCollectionRequest.md | 24 +++++- ...tManagedDeviceLogCollectionRequestCount.md | 24 +++++- ...MgDeviceManagementManagedDeviceOverview.md | 22 +++++ ...Get-MgDeviceManagementManagedDeviceUser.md | 22 +++++ ...mentManagedDeviceWindowsProtectionState.md | 24 +++++- ...dowsProtectionStateDetectedMalwareState.md | 24 +++++- ...rotectionStateDetectedMalwareStateCount.md | 24 +++++- ...ManagementMobileAppTroubleshootingEvent.md | 24 +++++- ...bleshootingEventAppLogCollectionRequest.md | 24 +++++- ...ootingEventAppLogCollectionRequestCount.md | 24 +++++- ...ementMobileAppTroubleshootingEventCount.md | 22 +++++ ...ceManagementNotificationMessageTemplate.md | 24 +++++- ...agementNotificationMessageTemplateCount.md | 22 +++++ ...ageTemplateLocalizedNotificationMessage.md | 24 +++++- ...mplateLocalizedNotificationMessageCount.md | 24 +++++- ...ceManagementSoftwareUpdateStatusSummary.md | 22 +++++ ...-MgDeviceManagementTroubleshootingEvent.md | 24 +++++- ...viceManagementTroubleshootingEventCount.md | 22 +++++ ...InformationProtectionAppLearningSummary.md | 24 +++++- ...mationProtectionAppLearningSummaryCount.md | 22 +++++ ...rmationProtectionNetworkLearningSummary.md | 24 +++++- ...onProtectionNetworkLearningSummaryCount.md | 22 +++++ ...viceManagementWindowsMalwareInformation.md | 24 +++++- ...anagementWindowsMalwareInformationCount.md | 22 +++++ ...owsMalwareInformationDeviceMalwareState.md | 24 +++++- ...lwareInformationDeviceMalwareStateCount.md | 24 +++++- ...iceManagementManagedDeviceWindowsDevice.md | 26 +++++- ...MgDownDeviceManagementManagedDeviceShut.md | 24 +++++- ...anagedDeviceSharedAppleDeviceActiveUser.md | 24 +++++- ...e-MgRetireDeviceManagementManagedDevice.md | 24 +++++- ...eManagementManagedDeviceWindowsDefender.md | 26 +++++- ...mentDeviceCompliancePolicyActionForRule.md | 26 +++++- ...k-MgDeviceManagementManagedDeviceRemote.md | 24 +++++- .../Microsoft.Graph.DeviceManagement.md | 19 +++++ ...MgAdminEdgeInternetExplorerModeSiteList.md | 28 ++++++- ...nternetExplorerModeSiteListSharedCookie.md | 28 ++++++- ...minEdgeInternetExplorerModeSiteListSite.md | 28 ++++++- .../New-MgDeviceManagementDetectedApp.md | 36 +++++++-- .../New-MgDeviceManagementDeviceCategory.md | 24 +++++- ...gDeviceManagementDeviceCompliancePolicy.md | 28 ++++++- ...agementDeviceCompliancePolicyAssignment.md | 26 +++++- ...mpliancePolicyDeviceSettingStateSummary.md | 26 +++++- ...ementDeviceCompliancePolicyDeviceStatus.md | 26 +++++- ...eCompliancePolicyScheduledActionForRule.md | 26 +++++- ...tionForRuleScheduledActionConfiguration.md | 26 +++++- ...viceCompliancePolicySettingStateSummary.md | 24 +++++- ...tateSummaryDeviceComplianceSettingState.md | 26 +++++- ...agementDeviceCompliancePolicyUserStatus.md | 26 +++++- ...w-MgDeviceManagementDeviceConfiguration.md | 28 ++++++- ...ManagementDeviceConfigurationAssignment.md | 26 +++++- ...eConfigurationDeviceSettingStateSummary.md | 26 +++++- ...nagementDeviceConfigurationDeviceStatus.md | 26 +++++- ...ManagementDeviceConfigurationUserStatus.md | 26 +++++- .../New-MgDeviceManagementManagedDevice.md | 44 +++++++--- ...ementManagedDeviceCompliancePolicyState.md | 26 +++++- ...nagementManagedDeviceConfigurationState.md | 26 +++++- ...edDeviceLogCollectionRequestDownloadUrl.md | 24 +++++- ...dowsProtectionStateDetectedMalwareState.md | 26 +++++- ...ManagementMobileAppTroubleshootingEvent.md | 24 +++++- ...bleshootingEventAppLogCollectionRequest.md | 26 +++++- ...EventAppLogCollectionRequestDownloadUrl.md | 24 +++++- ...ceManagementNotificationMessageTemplate.md | 24 +++++- ...ageTemplateLocalizedNotificationMessage.md | 26 +++++- ...-MgDeviceManagementTroubleshootingEvent.md | 24 +++++- ...InformationProtectionAppLearningSummary.md | 24 +++++- ...rmationProtectionNetworkLearningSummary.md | 24 +++++- ...viceManagementWindowsMalwareInformation.md | 24 +++++- ...owsMalwareInformationDeviceMalwareState.md | 26 +++++- ...MgAdminEdgeInternetExplorerModeSiteList.md | 26 +++++- .../Remove-MgAdminEdge.md | 22 +++++ .../Remove-MgAdminEdgeInternetExplorerMode.md | 22 +++++ ...MgAdminEdgeInternetExplorerModeSiteList.md | 24 +++++- ...nternetExplorerModeSiteListSharedCookie.md | 24 +++++- ...minEdgeInternetExplorerModeSiteListSite.md | 24 +++++- .../Remove-MgDeviceManagementDetectedApp.md | 24 +++++- ...Remove-MgDeviceManagementDeviceCategory.md | 24 +++++- ...gDeviceManagementDeviceCompliancePolicy.md | 24 +++++- ...agementDeviceCompliancePolicyAssignment.md | 24 +++++- ...mpliancePolicyDeviceSettingStateSummary.md | 24 +++++- ...eviceCompliancePolicyDeviceStateSummary.md | 22 +++++ ...ementDeviceCompliancePolicyDeviceStatus.md | 24 +++++- ...iceCompliancePolicyDeviceStatusOverview.md | 24 +++++- ...eCompliancePolicyScheduledActionForRule.md | 24 +++++- ...tionForRuleScheduledActionConfiguration.md | 24 +++++- ...viceCompliancePolicySettingStateSummary.md | 24 +++++- ...tateSummaryDeviceComplianceSettingState.md | 24 +++++- ...agementDeviceCompliancePolicyUserStatus.md | 24 +++++- ...eviceCompliancePolicyUserStatusOverview.md | 24 +++++- ...e-MgDeviceManagementDeviceConfiguration.md | 24 +++++- ...ManagementDeviceConfigurationAssignment.md | 24 +++++- ...eConfigurationDeviceSettingStateSummary.md | 24 +++++- ...ntDeviceConfigurationDeviceStateSummary.md | 22 +++++ ...nagementDeviceConfigurationDeviceStatus.md | 24 +++++- ...DeviceConfigurationDeviceStatusOverview.md | 24 +++++- ...ManagementDeviceConfigurationUserStatus.md | 24 +++++- ...ntDeviceConfigurationUserStatusOverview.md | 24 +++++- .../Remove-MgDeviceManagementManagedDevice.md | 24 +++++- ...MgDeviceManagementManagedDeviceCategory.md | 24 +++++- ...iceManagementManagedDeviceCategoryByRef.md | 24 +++++- ...ementManagedDeviceCompliancePolicyState.md | 24 +++++- ...nagementManagedDeviceConfigurationState.md | 24 +++++- ...gementManagedDeviceLogCollectionRequest.md | 24 +++++- ...tManagedDeviceUserFromSharedAppleDevice.md | 26 +++++- ...mentManagedDeviceWindowsProtectionState.md | 24 +++++- ...dowsProtectionStateDetectedMalwareState.md | 24 +++++- ...ManagementMobileAppTroubleshootingEvent.md | 24 +++++- ...bleshootingEventAppLogCollectionRequest.md | 24 +++++- ...ceManagementNotificationMessageTemplate.md | 24 +++++- ...ageTemplateLocalizedNotificationMessage.md | 24 +++++- ...-MgDeviceManagementTroubleshootingEvent.md | 24 +++++- ...InformationProtectionAppLearningSummary.md | 24 +++++- ...rmationProtectionNetworkLearningSummary.md | 24 +++++- ...viceManagementWindowsMalwareInformation.md | 24 +++++- ...owsMalwareInformationDeviceMalwareState.md | 24 +++++- ...ManagementManagedDeviceRemoteAssistance.md | 24 +++++- ...MgDeviceManagementManagedDevicePasscode.md | 24 +++++- ...tart-MgDeviceManagementManagedDeviceNow.md | 24 +++++- ...MgDeviceManagementManagedDevicePasscode.md | 24 +++++- ...tNotificationMessageTemplateTestMessage.md | 24 +++++- ...gDeviceManagementDeviceCompliancePolicy.md | 26 +++++- ...t-MgDeviceManagementDeviceConfiguration.md | 26 +++++- ...iceManagementManagedDeviceCategoryByRef.md | 28 ++++++- ...ceManagementManagedDeviceActivationLock.md | 24 +++++- .../Sync-MgDeviceManagementManagedDevice.md | 24 +++++- .../Update-MgAdminEdge.md | 26 +++++- .../Update-MgAdminEdgeInternetExplorerMode.md | 24 +++++- ...MgAdminEdgeInternetExplorerModeSiteList.md | 30 ++++++- ...nternetExplorerModeSiteListSharedCookie.md | 28 ++++++- ...minEdgeInternetExplorerModeSiteListSite.md | 28 ++++++- .../Update-MgDeviceManagement.md | 80 ++++++++++++------- .../Update-MgDeviceManagementDetectedApp.md | 38 +++++++-- ...Update-MgDeviceManagementDeviceCategory.md | 26 +++++- ...gDeviceManagementDeviceCompliancePolicy.md | 30 ++++++- ...agementDeviceCompliancePolicyAssignment.md | 26 +++++- ...mpliancePolicyDeviceSettingStateSummary.md | 26 +++++- ...eviceCompliancePolicyDeviceStateSummary.md | 24 +++++- ...ementDeviceCompliancePolicyDeviceStatus.md | 26 +++++- ...iceCompliancePolicyDeviceStatusOverview.md | 26 +++++- ...eCompliancePolicyScheduledActionForRule.md | 26 +++++- ...tionForRuleScheduledActionConfiguration.md | 26 +++++- ...viceCompliancePolicySettingStateSummary.md | 26 +++++- ...tateSummaryDeviceComplianceSettingState.md | 26 +++++- ...agementDeviceCompliancePolicyUserStatus.md | 26 +++++- ...eviceCompliancePolicyUserStatusOverview.md | 26 +++++- ...e-MgDeviceManagementDeviceConfiguration.md | 30 ++++++- ...ManagementDeviceConfigurationAssignment.md | 26 +++++- ...eConfigurationDeviceSettingStateSummary.md | 26 +++++- ...ntDeviceConfigurationDeviceStateSummary.md | 24 +++++- ...nagementDeviceConfigurationDeviceStatus.md | 26 +++++- ...DeviceConfigurationDeviceStatusOverview.md | 26 +++++- ...ManagementDeviceConfigurationUserStatus.md | 26 +++++- ...ntDeviceConfigurationUserStatusOverview.md | 26 +++++- .../Update-MgDeviceManagementManagedDevice.md | 46 ++++++++--- ...MgDeviceManagementManagedDeviceCategory.md | 26 +++++- ...ementManagedDeviceCompliancePolicyState.md | 26 +++++- ...nagementManagedDeviceConfigurationState.md | 26 +++++- ...gementManagedDeviceLogCollectionRequest.md | 26 +++++- ...gementManagedDeviceWindowsDeviceAccount.md | 28 ++++++- ...mentManagedDeviceWindowsProtectionState.md | 26 +++++- ...dowsProtectionStateDetectedMalwareState.md | 26 +++++- ...ManagementMobileAppTroubleshootingEvent.md | 26 +++++- ...bleshootingEventAppLogCollectionRequest.md | 26 +++++- ...ceManagementNotificationMessageTemplate.md | 26 +++++- ...ageTemplateLocalizedNotificationMessage.md | 26 +++++- ...-MgDeviceManagementTroubleshootingEvent.md | 26 +++++- ...InformationProtectionAppLearningSummary.md | 26 +++++- ...rmationProtectionNetworkLearningSummary.md | 26 +++++- ...viceManagementWindowsMalwareInformation.md | 26 +++++- ...owsMalwareInformationDeviceMalwareState.md | 26 +++++- 230 files changed, 5408 insertions(+), 351 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md index d9692dd1b8e9a..d8e9d5ed148ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md @@ -570,14 +570,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeepEnrollmentData ]: [KeepUserData ]: [MacOSUnlockCode ]: [PersistEsimDataPlan ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -616,3 +616,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/clear-mgdevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md index 5e1f02248ef1e..96c3dd06a9009 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/disable-mgdevicemanagementmanageddevicelostmode) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md index 0c8451ab71184..c8f45d2d9d79a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/find-mgdevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md index debdc085c97c2..2f00fc2681b3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.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/get-mgadminedge) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md index 0974e83a90406..e100b2a6b6c1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.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/get-mgadminedgeinternetexplorermode) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md index ffaa62dbb3466..81816eb4712b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelist) - [](https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md index 0035ab4204d45..d1f7d1ffe1152 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.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/get-mgadminedgeinternetexplorermodesitelistcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 21d4b21fde520..6b68c2d2060a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookie) - [](https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md index b003c02b90c14..5f6bc10a179a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookiecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md index ccfadc54a6f1c..6307e959cc479 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsite) - [](https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md index 4a162a1df28f5..66a895c260767 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md @@ -341,7 +341,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -380,3 +380,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsitecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md index 682e639e815e5..e1be51bd47cef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.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/get-mgdevicemanagement) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md index 973c1e79106ee..14c94a8af7702 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -563,3 +563,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedapp) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md index 9324824f16878..f06ba6fe3323c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.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/get-mgdevicemanagementdetectedappcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md index ed19252c03863..7609a343d0e0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md index 8c4ff44506fd6..711d3e7c4a593 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md @@ -341,7 +341,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -380,3 +380,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevicecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md index de410a66f768c..4448ef1d5aa47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -563,3 +563,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md index 8033d6efaf159..e24afd97616f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.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/get-mgdevicemanagementdevicecategorycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md index 3bd099afe95be..f0b9279091918 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 3d2bcfd36dad8..50b66f14a3e50 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -591,3 +591,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md index 919d2603085b0..09193c12a556e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md index e8d971a0555a0..c79174426902f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.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/get-mgdevicemanagementdevicecompliancepolicycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 31062610af90c..9ca1713250176 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -556,7 +556,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -595,3 +595,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md index 68a383edb84a9..43fcd00169894 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummarycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 2298576ace4b6..fb8e4260dda78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.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/get-mgdevicemanagementdevicecompliancepolicydevicestatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index d81e1e5a7432d..4694446a92d24 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -591,3 +591,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md index 930f3b3832a85..55836d818f4a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatuscount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index b824d9ac119f9..dbb5d411db8d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index edcdbf5762041..a9337047474bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -556,7 +556,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -595,3 +595,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md index 5cd1b4abd86ef..083efb23124fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 20f45baf1dbf3..08bb8d7d56dd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -583,7 +583,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -622,3 +622,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md index 69912e6c407b1..dddf6aad68186 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -403,3 +403,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfigurationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index ab08880859322..6ecd875a0ab90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md index 475ca64555f8e..ea6c94e6fc109 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.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/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 1b7a389b7f692..c6e9fb42d5db7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md index 78a10a135217e..1c042aa38f7d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstatecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 43f71f57a34c0..ec534d8b6222c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -591,3 +591,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md index 98deeeb4048a0..1939d1e7adf9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatuscount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index ba7efe4019044..b39bb613d3836 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md index 5bc244d7fc12e..ff30ac765a51e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md index 0fba172e17931..ae99b9aa44b28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -591,3 +591,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md index 72a9b34be3056..22d23e357a820 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md index 37eb259f90b3c..08965ce2fbe1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.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/get-mgdevicemanagementdeviceconfigurationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index e202679fc6470..a58588a91ae39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -591,3 +591,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md index b9a848e9a419e..2d7fa8f79a884 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummarycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 54ef600f70f01..00bd23771995f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.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/get-mgdevicemanagementdeviceconfigurationdevicestatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 91591ffcfb589..7a0506a1e6b89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -591,3 +591,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md index 83cec88e19e46..d3ee8056a79e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatuscount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 82b8a0650357e..a8d92424366dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md index 36379dd28d42e..9a801d475bfb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md @@ -321,7 +321,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -360,3 +360,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationomasettingplaintextvalue) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md index fe55b7a2dcd2e..250e1e54f2a3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -591,3 +591,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md index 39109e6ed4e20..50fa428992d7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatuscount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 1d094a322520a..93561e1bf8525 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md index 50953bf7861d9..d8463c7e101ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md @@ -526,7 +526,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md index 398cce9b7757c..9079b11529406 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md @@ -343,7 +343,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -382,3 +382,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md index 62ea85ba4069e..d4561fecbf968 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -298,7 +298,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -337,3 +337,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategorybyref) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md index e2722dbbeaaa6..70355cac63b12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md index ee0a4936e056a..c55f26e15ad83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystatecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md index b1f396155c6fc..a1e5a955bf96a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md index 34e9a22b2eabb..84a2438a1af63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstatecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md index 9b9952eeb7c62..40b913eb0516b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.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/get-mgdevicemanagementmanageddevicecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md index f6c99215b0ed9..742bac46266b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md index 82bd0391eb3f4..12170f7c7279d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequestcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md index 908becb44c3a3..6706c09375a61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.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/get-mgdevicemanagementmanageddeviceoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md index 0ba79163d5967..8908ba89293dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md @@ -479,3 +479,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceuser) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 395a1933b10ac..29876a497538e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -346,7 +346,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -385,3 +385,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 25c22a6e285ae..e36ccde1cb022 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -555,7 +555,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -594,3 +594,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md index f9adefd314045..a01aab666f87d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestatecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md index 35aadcb6df048..d8234764527f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index e8af2171eed5d..d85c34268f201 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md index 7cba2fe0b3f38..b2b65e2221331 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md index 7d24fbb200feb..49dbcae0a6157 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.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/get-mgdevicemanagementmobileapptroubleshootingeventcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md index 267798bc242ec..d383f8fd778cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md index d312fa86addc6..7c580f31cae31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.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/get-mgdevicemanagementnotificationmessagetemplatecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index b574edbd04f91..7b73c7240892a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md index e785199e5d8c8..cd30b8b8225b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessagecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md index c933c6333b024..a148c196b67ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.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/get-mgdevicemanagementsoftwareupdatestatussummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md index 009ab1fe48e0b..6a80a654693d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md index 59bd7491facf6..3e0ae59453713 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.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/get-mgdevicemanagementtroubleshootingeventcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 4237962dedb47..1db8ef46f5248 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md index 2daebca7dc671..42ce81b5fdbc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.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/get-mgdevicemanagementwindowsinformationprotectionapplearningsummarycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 7999f8c724ba1..e916282e6ed0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md index 0611f2a416426..86fbd10f44916 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.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/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummarycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md index 14908534716a3..03735cc510907 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md index 92da19f1404ae..f32f17008d93d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.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/get-mgdevicemanagementwindowsmalwareinformationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 686f220825858..bcfe51ba12f52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md index b96a95231f315..c482f71fd632b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestatecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md index baba3cdb72dc0..963c23ae746a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md @@ -485,11 +485,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [KeepUserData ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -528,3 +528,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgcleandevicemanagementmanageddevicewindowsdevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md index 0de01719605df..f2b48db70a696 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgdowndevicemanagementmanageddeviceshut) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md index 7b2a91070dc03..f9a2aa8dde4bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -401,3 +401,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mglogoutdevicemanagementmanageddevicesharedappledeviceactiveuser) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md index a51c281b88e6b..2a3d9ffe4bc25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgretiredevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md index 01f75a0970475..7eb3ac2d7ae2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md @@ -485,11 +485,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [QuickScan ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -528,3 +528,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscandevicemanagementmanageddevicewindowsdefender) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md index 6c8dd82ad110b..72d1aec9ba1e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md @@ -498,7 +498,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [DeviceComplianceScheduledActionForRules ]: [Id ]: The unique identifier for an entity. @@ -530,7 +530,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -569,3 +569,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscheduledevicemanagementdevicecompliancepolicyactionforrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md index cc0ccc3f11ff1..209031fab7d8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/lock-mgdevicemanagementmanageddeviceremote) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md index 4cfb0273d8a2b..844fd8cd610fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Microsoft.Graph.DeviceManagement.md @@ -537,3 +537,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md index ed17c67ee8ed0..a543af93257af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md @@ -585,7 +585,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 singleton entity which is used to specify IE mode site list metadata +BODYPARAMETER ``: A singleton entity which is used to specify IE mode site list metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -654,7 +654,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [WebUrl ]: The URL of the site. [Status ]: browserSiteListStatus -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -665,7 +665,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PUBLISHEDBY : identitySet +PUBLISHEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -748,3 +748,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelist) - [](https://learn.microsoft.com/graph/api/internetexplorermode-post-sitelists?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 3882ca4820893..ccbe69ccfbd1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -805,7 +805,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 : browserSharedCookie +BODYPARAMETER ``: browserSharedCookie [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -858,7 +858,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the cookie was last published. [SourceEnvironment ]: browserSharedCookieSourceEnvironment -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -893,7 +893,7 @@ INPUTOBJECT : Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -909,3 +909,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsharedcookie) - [](https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md index 84959f36ced81..3207795d86311 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.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. -BODYPARAMETER : Singleton entity which is used to specify IE mode site metadata +BODYPARAMETER ``: Singleton entity which is used to specify IE mode site metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -864,7 +864,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the site was last published. [TargetEnvironment ]: browserSiteTargetEnvironment -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -899,7 +899,7 @@ INPUTOBJECT : Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -915,3 +915,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsite) - [](https://learn.microsoft.com/graph/api/browsersitelist-post-sites?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md index d52d5ffe65fd6..549eb4addd7c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.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. -BODYPARAMETER : A managed or unmanaged app that is installed on a managed device. +BODYPARAMETER ``: A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -1574,7 +1574,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 @@ -5758,8 +5758,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. @@ -6863,7 +6863,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 @@ -11047,8 +11047,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. @@ -11110,3 +11110,25 @@ Defaults to setting on client device. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdetectedapp) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md index 1f35d1b7308ad..e5f0f715c00f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md @@ -414,7 +414,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 : Device categories provides a way to organize your devices. +BODYPARAMETER ``: Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -427,3 +427,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md index eab82fd39990f..517bf99dd240f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md @@ -667,7 +667,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : This is the base class for Compliance policy. +BODYPARAMETER ``: This is the base class for Compliance policy. Compliance policies are platform specific and individual per-platform compliance policies inherit from here. [(Any) ]: This indicates any property can be added to this object. @@ -775,7 +775,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW : deviceComplianceDeviceOverview +DEVICESTATUSOVERVIEW ``: deviceComplianceDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -812,7 +812,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW : deviceComplianceUserOverview +USERSTATUSOVERVIEW ``: deviceComplianceUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -828,3 +828,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 095fccfaa918b..1eb3a35135395 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -496,14 +496,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Device compliance policy assignment. +BODYPARAMETER ``: Device compliance policy assignment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -542,3 +542,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 6b736a2a7e909..428ecdbd230ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -712,7 +712,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 : Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER ``: Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -726,7 +726,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -765,3 +765,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 359a89500755a..22c017a99d929 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -665,7 +665,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 : deviceComplianceDeviceStatus +BODYPARAMETER ``: deviceComplianceDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -677,7 +677,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -716,3 +716,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 983aeecec5f65..4e64da1f38fee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -529,7 +529,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 : Scheduled Action for Rule +BODYPARAMETER ``: Scheduled Action for Rule [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -545,7 +545,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -594,3 +594,25 @@ Valid values 0 to 8760 ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 288b174f8064a..0ffe2651824e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.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 : Scheduled Action Configuration +BODYPARAMETER ``: Scheduled Action Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -623,7 +623,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -662,3 +662,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 87411b4a32b0c..b44de16c1b6a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -614,7 +614,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 : Device Compilance Policy Setting State summary across the account. +BODYPARAMETER ``: Device Compilance Policy Setting State summary across the account. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -662,3 +662,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 85b0a56401838..9bef8eb8b7db0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -783,7 +783,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 : Device compliance setting State for a given device. +BODYPARAMETER ``: Device compliance setting State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -799,7 +799,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: The User PrincipalName that is being reported -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -838,3 +838,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 55cf495588a17..6540bc953ebd1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -607,7 +607,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 : deviceComplianceUserStatus +BODYPARAMETER ``: deviceComplianceUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -617,7 +617,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -656,3 +656,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md index 0fb3c146d09fc..3139fa9cdfc0a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md @@ -642,7 +642,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : Device Configuration. +BODYPARAMETER ``: Device Configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -733,7 +733,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW : deviceConfigurationDeviceOverview +DEVICESTATUSOVERVIEW ``: deviceConfigurationDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -754,7 +754,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW : deviceConfigurationUserOverview +USERSTATUSOVERVIEW ``: deviceConfigurationUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -770,3 +770,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md index a2c1d423713d3..775de910844e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md @@ -496,14 +496,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : The device configuration assignment entity assigns an AAD group to a specific device configuration. +BODYPARAMETER ``: The device configuration assignment entity assigns an AAD group to a specific device configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -542,3 +542,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 627a263d1df1d..33ba43f6c2e8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -723,7 +723,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 : Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER ``: Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -737,7 +737,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -776,3 +776,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 952f6e4609387..dc47d02cdc7ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -665,7 +665,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 : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -677,7 +677,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -716,3 +716,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md index e50a4dc9189b4..484d078930c60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -607,7 +607,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 : deviceConfigurationUserStatus +BODYPARAMETER ``: deviceConfigurationUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -617,7 +617,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -656,3 +656,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md index 740578b488673..ce5cc4f74c565 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md @@ -901,7 +901,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 : Devices that are managed or pre-enrolled through Intune. +BODYPARAMETER ``: Devices that are managed or pre-enrolled through Intune. Limited support for $filter: Only properties whose descriptions mention support for $filter may be used, and combinations of those filtered properties must use 'and', not 'or'. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -1939,7 +1939,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 @@ -6123,8 +6123,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. @@ -6182,7 +6182,7 @@ Defaults to setting on client device. [TamperProtectionEnabled ]: When TRUE indicates the Windows Defender tamper protection feature is enabled, when FALSE indicates the Windows Defender tamper protection feature is not enabled. Defaults to setting on client device. -CONFIGURATIONMANAGERCLIENTENABLEDFEATURES : configuration Manager client enabled features +CONFIGURATIONMANAGERCLIENTENABLEDFEATURES ``: configuration Manager client enabled features [(Any) ]: This indicates any property can be added to this object. [CompliancePolicy ]: Whether compliance policy is managed by Intune [DeviceConfiguration ]: Whether device configuration is managed by Intune @@ -6191,7 +6191,7 @@ CONFIGURATIONMANAGERCLIENTENABLEDFEATURES ]: Whether resource access is managed by Intune [WindowsUpdateForBusiness ]: Whether Windows Update for Business is managed by Intune -DEVICECATEGORY : Device categories provides a way to organize your devices. +DEVICECATEGORY ``: Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -6250,7 +6250,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -DEVICEHEALTHATTESTATIONSTATE : deviceHealthAttestationState +DEVICEHEALTHATTESTATIONSTATE ``: deviceHealthAttestationState [(Any) ]: This indicates any property can be added to this object. [AttestationIdentityKey ]: TWhen an Attestation Identity Key (AIK) is present on a device, it indicates that the device has an endorsement key (EK) certificate. [BitLockerStatus ]: On or Off of BitLocker Drive Encryption @@ -7208,7 +7208,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 @@ -11578,8 +11578,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. @@ -11589,7 +11589,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? -WINDOWSPROTECTIONSTATE : Device protection status entity. +WINDOWSPROTECTIONSTATE ``: Device protection status entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -11642,3 +11642,25 @@ Defaults to setting on client device. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 00eff24844bf4..b009edea33934 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -630,7 +630,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 : Device Compliance Policy State for a given device. +BODYPARAMETER ``: Device Compliance Policy State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -656,7 +656,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -712,3 +712,25 @@ SETTINGSTATES : . ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicecompliancepolicystate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md index 51f9cb34a242a..8c55a86f8ff33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md @@ -630,7 +630,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 : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -656,7 +656,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -712,3 +712,25 @@ SETTINGSTATES : . ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddeviceconfigurationstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md index a83c147ccc8c6..19ec811123c8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -404,3 +404,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicelogcollectionrequestdownloadurl) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 09106a112ad72..fd15723f44bd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -742,7 +742,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 : Malware detection entity. +BODYPARAMETER ``: Malware detection entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -757,7 +757,7 @@ Read-only. [State ]: Malware current status [ThreatState ]: Malware threat status -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -796,3 +796,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md index e41f244afe0f9..96e694caab2a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -399,7 +399,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -BODYPARAMETER : mobileAppTroubleshootingEvent +BODYPARAMETER ``: mobileAppTroubleshootingEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -415,3 +415,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 52d344981589b..64b38d0a65f01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -583,7 +583,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 for AppLogCollectionRequest contains all logs values. +BODYPARAMETER ``: Entity for AppLogCollectionRequest contains all logs values. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -592,7 +592,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -631,3 +631,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md index 15bb7b3e3793b..36641f3ffdad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -402,3 +402,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestdownloadurl) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md index 6a93a641a768e..4eb34d385bddb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md @@ -506,7 +506,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 : Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. +BODYPARAMETER ``: Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance. [(Any) ]: This indicates any property can be added to this object. @@ -544,3 +544,25 @@ To unset, set this property to true on another Localized Notification Message. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 40d03b7a2171c..667b6035d42c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.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 : The text content of a Notification Message Template for the specified locale. +BODYPARAMETER ``: The text content of a Notification Message Template for the specified locale. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -624,7 +624,7 @@ To unset, set this property to true on another Localized Notification Message. [MessageTemplate ]: The Message Template content. [Subject ]: The Message Template Subject. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -663,3 +663,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md index 776be2e5ccd5b..01f25f3628ba8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md @@ -408,7 +408,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 : Event representing an general failure. +BODYPARAMETER ``: Event representing an general failure. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -419,3 +419,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementtroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index dc07230d6a6d0..33f297a625056 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.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 : Windows Information Protection AppLearning Summary entity. +BODYPARAMETER ``: Windows Information Protection AppLearning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -447,3 +447,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionapplearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 34f110d917ccd..5fd2c7f2b63fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -412,7 +412,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 : Windows Information Protection Network learning Summary entity. +BODYPARAMETER ``: Windows Information Protection Network learning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -423,3 +423,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md index c4aed3e8d733d..115dfb58eb50c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md @@ -503,7 +503,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 : Malware information entity. +BODYPARAMETER ``: Malware information entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -536,3 +536,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index be1fa61d41281..e4e6c6dad2910 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -640,7 +640,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 : Malware state for a windows device +BODYPARAMETER ``: Malware state for a windows device [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -651,7 +651,7 @@ Read-only. [LastStateChangeDateTime ]: The last time this particular threat was changed [ThreatState ]: Malware threat status -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -690,3 +690,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md index 1236de24ccae1..b2427b0fa55e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md @@ -520,7 +520,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Revision ]: [SharedCookies ]: @@ -580,7 +580,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [TargetEnvironment ]: browserSiteTargetEnvironment [WebUrl ]: The URL of the site. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -686,3 +686,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/publish-mgadminedgeinternetexplorermodesitelist) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md index 054021ea5dfdc..c907512ba0c98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.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/remove-mgadminedge) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md index 6330b9184dadb..2eeea2294e252 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.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/remove-mgadminedgeinternetexplorermode) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md index 30080df818031..5b1f5bc991479 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -422,3 +422,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelist) - [](https://learn.microsoft.com/graph/api/internetexplorermode-delete-sitelists?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index a5afff613f8c8..e9a475ad4740c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -410,7 +410,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -450,3 +450,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsharedcookie) - [](https://learn.microsoft.com/graph/api/browsersitelist-delete-sharedcookies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md index 2f4b8284cd042..5404c44f7a730 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -410,7 +410,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -450,3 +450,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsite) - [](https://learn.microsoft.com/graph/api/browsersitelist-delete-sites?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md index 0f39b00ea29b9..96f2a0cc4ed9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdetectedapp) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md index 6b3911c01bbe2..fb03050d90dae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md index 403f4b8c10985..2508d5c074980 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md index a3c2d59ff31be..851d1fffe1d84 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -404,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -443,3 +443,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index e4a7767b58fbd..39ab67bf042fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 95e7e2b0c4880..07c020d587480 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.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/remove-mgdevicemanagementdevicecompliancepolicydevicestatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index a9c383e20cb90..6b28c9bb27b0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -404,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -443,3 +443,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 3e68cb280c7a5..ff1cc34f24e46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -386,7 +386,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index dc69adfd0146e..8ae2a6eaaab5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -444,3 +444,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 718e980846482..a94bdbc872cdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -427,7 +427,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -466,3 +466,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index de0e88edca648..4d352551e4fea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 80adf6329f7dc..0dea8e2e55121 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -444,3 +444,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 7f619b2454b86..84ff43229faad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -404,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -443,3 +443,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index d550e3aedf94e..160e6824e1a57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -424,3 +424,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md index 39137b9d69ee2..42b99987a70b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md index d8e4ba976696f..55dfd4e2009ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md @@ -404,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -443,3 +443,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 8e92701843bba..3317736629042 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -444,3 +444,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 54b28064f112d..7ed3fcc01d55c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.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/remove-mgdevicemanagementdeviceconfigurationdevicestatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 31c6b8019131b..a18310b49328e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -404,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -443,3 +443,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 5e5131e35e72f..c62134d8e3674 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -424,3 +424,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md index e24094982c8b5..9123eb7c4ef23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -404,7 +404,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -443,3 +443,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index d8a0852e2aecd..cba0819b7f343 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -424,3 +424,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md index 9b0461f1aea78..0592befae3001 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md index bd3ec1ffb6089..c0ca1ca1b120b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md index 0b1ee2649bbbd..fad690cfd11fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategorybyref) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 4d331da298169..7cea43b4c5367 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -406,7 +406,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -445,3 +445,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecompliancepolicystate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md index 526f0519d9caa..41b6cda8c669e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md @@ -406,7 +406,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -445,3 +445,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceconfigurationstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 8015cf88fa932..d6a1992dfaa83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -406,7 +406,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -445,3 +445,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicelogcollectionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md index cff77457e35c0..fd38f475354ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.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. [UserPrincipalName ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -529,3 +529,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceuserfromsharedappledevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 0992a32d64f01..569f44cb32b2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -424,3 +424,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index bb8d40e84511e..4cfabac265ba1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md index 4c5fdf9672b14..1befcc8f9907a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 10d8cc85c1d75..32587ff55f2b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -444,3 +444,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md index 543858a2aa2da..0bad48c211095 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 0a6e024dbafd9..7eb3f2d89918d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -444,3 +444,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md index 7cf76559c2344..71fca61e3712d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementtroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 0bfc282b302fb..dc6c41e286fae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionapplearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 4c4701bcb3879..253168feeca52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md index bcfa9232b8f8a..4f531339a8997 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -421,3 +421,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index d8a585f22fcbc..7c1ac4691711a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -444,3 +444,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md index a39514d852991..e8a9eecfae19e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/request-mgdevicemanagementmanageddeviceremoteassistance) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md index 735ff66c71d38..b7b3fb4a53462 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/reset-mgdevicemanagementmanageddevicepasscode) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md index 5309b09b8d8b3..935a5a288c0f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restart-mgdevicemanagementmanageddevicenow) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md index e85b97dbe9901..9ed9082bfac2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restore-mgdevicemanagementmanageddevicepasscode) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md index 58c03442b23f6..654df401388f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -402,3 +402,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/send-mgdevicemanagementnotificationmessagetemplatetestmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md index 340dff797a186..2930415101f85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md @@ -482,7 +482,7 @@ Read-only. [Target ]: Base type for assignment targets. [(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. @@ -490,7 +490,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -529,3 +529,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdevicecompliancepolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md index 6da155cda80e9..f0494527848fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md @@ -480,7 +480,7 @@ Read-only. [Target ]: Base type for assignment targets. [(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. @@ -488,7 +488,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -527,3 +527,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdeviceconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md index bbc3802fd007b..98f1ee384738f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -511,13 +511,13 @@ 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. - OdataId : The entity reference URL of the resource. + OdataId ``: The entity reference URL of the resource. For example, https://graph.microsoft.com/v1.0/directoryObjects/{id}. [OdataType ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementmanageddevicecategorybyref) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md index 21f182c3f1ce4..d531ac60be1c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/skip-mgdevicemanagementmanageddeviceactivationlock) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md index e91e5ced4ff04..7770914a434fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md @@ -361,7 +361,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 [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -400,3 +400,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/sync-mgdevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md index 2ba5af55e40be..0c9e6486c4162 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : edge +BODYPARAMETER ``: edge [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -463,7 +463,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [WebUrl ]: The URL of the site. [Status ]: browserSiteListStatus -INTERNETEXPLORERMODE : internetExplorerMode +INTERNETEXPLORERMODE ``: internetExplorerMode [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -539,3 +539,25 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedge) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md index 3f1faa0892b21..155917d5c0b65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : internetExplorerMode +BODYPARAMETER ``: internetExplorerMode [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -531,3 +531,25 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermode) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md index 5e4cfa8686304..e771dbde49851 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md @@ -748,7 +748,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 singleton entity which is used to specify IE mode site list metadata +BODYPARAMETER ``: A singleton entity which is used to specify IE mode site list metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -817,7 +817,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft [WebUrl ]: The URL of the site. [Status ]: browserSiteListStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -852,7 +852,7 @@ INPUTOBJECT : Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -863,7 +863,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PUBLISHEDBY : identitySet +PUBLISHEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -946,3 +946,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelist) - [](https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 46d931fe0916c..f781f178f408a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -832,7 +832,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 : browserSharedCookie +BODYPARAMETER ``: browserSharedCookie [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -885,7 +885,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the cookie was last published. [SourceEnvironment ]: browserSharedCookieSourceEnvironment -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -920,7 +920,7 @@ INPUTOBJECT : Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -936,3 +936,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsharedcookie) - [](https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md index 65c6c82625235..3cd13a0ceb818 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -836,7 +836,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Singleton entity which is used to specify IE mode site metadata +BODYPARAMETER ``: Singleton entity which is used to specify IE mode site metadata [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -890,7 +890,7 @@ For example, in the access reviews decisions API, this property might record the [PublishedDateTime ]: The date and time when the site was last published. [TargetEnvironment ]: browserSiteTargetEnvironment -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -925,7 +925,7 @@ INPUTOBJECT : Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -941,3 +941,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsite) - [](https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md index b795c3321f197..74c2be77b0214 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md @@ -1834,7 +1834,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. -APPLEPUSHNOTIFICATIONCERTIFICATE : Apple push notification certificate. +APPLEPUSHNOTIFICATIONCERTIFICATE ``: Apple push notification certificate. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1877,7 +1877,7 @@ Read-only. [OldValue ]: Old value. [ResourceId ]: Audit resource's Id. -BODYPARAMETER : deviceManagement +BODYPARAMETER ``: deviceManagement [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2988,7 +2988,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 @@ -7172,8 +7172,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. @@ -8956,7 +8956,7 @@ Read-only. [MacOSOnboarded ]: Partner onboarded for Mac devices. [PartnerState ]: Partner state of this tenant. -CONDITIONALACCESSSETTINGS : Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. +CONDITIONALACCESSSETTINGS ``: Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -10009,7 +10009,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 @@ -14193,8 +14193,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. @@ -14349,7 +14349,7 @@ Read-only. [UserPrincipalName ]: UserPrincipalName. [Version ]: Version of the device configuration. -DEVICECOMPLIANCEPOLICYDEVICESTATESUMMARY : deviceCompliancePolicyDeviceStateSummary +DEVICECOMPLIANCEPOLICYDEVICESTATESUMMARY ``: deviceCompliancePolicyDeviceStateSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -14391,7 +14391,7 @@ Read-only. [SettingName ]: Name of the setting. [UnknownDeviceCount ]: Number of unknown devices -DEVICECONFIGURATIONDEVICESTATESUMMARIES : deviceConfigurationDeviceStateSummary +DEVICECONFIGURATIONDEVICESTATESUMMARIES ``: deviceConfigurationDeviceStateSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -14500,7 +14500,7 @@ Read-only. [WhenPartnerDevicesWillBeMarkedAsNonCompliantDateTime ]: DateTime in UTC when PartnerDevices will be marked as NonCompliant [WhenPartnerDevicesWillBeRemovedDateTime ]: DateTime in UTC when PartnerDevices will be removed -DEVICEPROTECTIONOVERVIEW : Hardware information of a given device. +DEVICEPROTECTIONOVERVIEW ``: Hardware information of a given device. [(Any) ]: This indicates any property can be added to this object. [CleanDeviceCount ]: Indicates number of devices reporting as clean [CriticalFailuresDeviceCount ]: Indicates number of devices with critical failures @@ -14544,7 +14544,7 @@ Read-only. [DeviceImportStatus ]: importedWindowsAutopilotDeviceIdentityImportStatus [DeviceRegistrationId ]: Device Registration ID for successfully added device reported by Device Directory Service(DDS). -INTUNEBRAND : intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal. +INTUNEBRAND ``: intuneBrand contains data which is used in customizing the appearance of the Company Portal applications as well as the end user web portal. [(Any) ]: This indicates any property can be added to this object. [ContactItEmailAddress ]: Email address of the person/organization responsible for IT support. [ContactItName ]: Name of the person/organization responsible for IT support. @@ -14583,7 +14583,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -MANAGEDDEVICEOVERVIEW : Summary data for managed devices +MANAGEDDEVICEOVERVIEW ``: Summary data for managed devices [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -15651,7 +15651,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 @@ -19835,8 +19835,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. @@ -19978,7 +19978,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. -REPORTS : deviceManagementReports +REPORTS ``: deviceManagementReports [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20092,13 +20092,13 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -SETTINGS : deviceManagementSettings +SETTINGS ``: deviceManagementSettings [(Any) ]: This indicates any property can be added to this object. [DeviceComplianceCheckinThresholdDays ]: The number of days a device is allowed to go without checking in to remain compliant. [IsScheduledActionEnabled ]: Is feature enabled or not for scheduled action for rule. [SecureByDefault ]: Device should be noncompliant when there is no compliance policy targeted when this is true -SOFTWAREUPDATESTATUSSUMMARY : softwareUpdateStatusSummary +SOFTWAREUPDATESTATUSSUMMARY ``: softwareUpdateStatusSummary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20415,7 +20415,7 @@ Supports: $filter, $select, $OrderBy. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 -USEREXPERIENCEANALYTICSAPPHEALTHOVERVIEW : The user experience analytics category entity contains the scores and insights for the various metrics of a category. +USEREXPERIENCEANALYTICSAPPHEALTHOVERVIEW ``: The user experience analytics category entity contains the scores and insights for the various metrics of a category. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20725,7 +20725,7 @@ A higher score indicates a healthier device. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 -USEREXPERIENCEANALYTICSOVERVIEW : The user experience analytics overview entity contains the overall score and the scores and insights of every metric of all categories. +USEREXPERIENCEANALYTICSOVERVIEW ``: The user experience analytics overview entity contains the overall score and the scores and insights of every metric of all categories. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20746,13 +20746,13 @@ The Timestamp type represents date and time information using ISO 8601 format an For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Returned by default. -USEREXPERIENCEANALYTICSSETTINGS : The user experience analytics insight is the recomendation to improve the user experience analytics score. +USEREXPERIENCEANALYTICSSETTINGS ``: The user experience analytics insight is the recomendation to improve the user experience analytics score. [(Any) ]: This indicates any property can be added to this object. [ConfigurationManagerDataConnectorConfigured ]: When TRUE, indicates Tenant attach is configured properly and System Center Configuration Manager (SCCM) tenant attached devices will show up in endpoint analytics reporting. When FALSE, indicates Tenant attach is not configured. FALSE by default. -USEREXPERIENCEANALYTICSWORKFROMANYWHEREHARDWAREREADINESSMETRIC : The user experience analytics hardware readiness entity contains account level information about hardware blockers for windows upgrade. +USEREXPERIENCEANALYTICSWORKFROMANYWHEREHARDWAREREADINESSMETRIC ``: The user experience analytics hardware readiness entity contains account level information about hardware blockers for windows upgrade. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -20994,7 +20994,7 @@ Supports: $select, $OrderBy. Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 -VIRTUALENDPOINT : virtualEndpoint +VIRTUALENDPOINT ``: virtualEndpoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -22138,7 +22138,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 @@ -26463,8 +26463,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. @@ -26616,7 +26616,7 @@ Read-only. [LastDetectionDateTime ]: Indicates the last time the malware was detected in UTC [Severity ]: Malware severity -WINDOWSMALWAREOVERVIEW : Windows device malware overview. +WINDOWSMALWAREOVERVIEW ``: Windows device malware overview. [(Any) ]: This indicates any property can be added to this object. [MalwareCategorySummary ]: List of device counts per malware category [ActiveMalwareDetectionCount ]: Count of active malware detections for this malware category. @@ -26665,3 +26665,25 @@ Valid values -2147483648 to 2147483647 ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagement) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md index 5e250ebc70545..c96f35bfa8739 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md @@ -672,7 +672,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 managed or unmanaged app that is installed on a managed device. +BODYPARAMETER ``: A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -1716,7 +1716,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 @@ -5900,8 +5900,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. @@ -5969,7 +5969,7 @@ Read-only [Version ]: Version of the discovered application. Read-only -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -7040,7 +7040,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 @@ -11224,8 +11224,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. @@ -11287,3 +11287,25 @@ Defaults to setting on client device. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdetectedapp) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md index f1562b88abdfe..98ab05b04ef86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.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 : Device categories provides a way to organize your devices. +BODYPARAMETER ``: Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -533,7 +533,7 @@ Read-only. [Description ]: Optional description for the device category. [DisplayName ]: Display name for the device category. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -572,3 +572,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md index a81429fbffff1..73e8212faa850 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md @@ -835,7 +835,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : This is the base class for Compliance policy. +BODYPARAMETER ``: This is the base class for Compliance policy. Compliance policies are platform specific and individual per-platform compliance policies inherit from here. [(Any) ]: This indicates any property can be added to this object. @@ -943,7 +943,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW : deviceComplianceDeviceOverview +DEVICESTATUSOVERVIEW ``: deviceComplianceDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -955,7 +955,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -1015,7 +1015,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW : deviceComplianceUserOverview +USERSTATUSOVERVIEW ``: deviceComplianceUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1031,3 +1031,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 0ab7c2ed2a75b..f2d806eaaa247 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -525,14 +525,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Device compliance policy assignment. +BODYPARAMETER ``: Device compliance policy assignment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -571,3 +571,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 29bc477b31174..c7630aa808426 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -741,7 +741,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 : Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER ``: Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -755,7 +755,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -794,3 +794,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 73d4c956e4aba..a210d91822b9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -569,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 : deviceCompliancePolicyDeviceStateSummary +BODYPARAMETER ``: deviceCompliancePolicyDeviceStateSummary [(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/update-mgdevicemanagementdevicecompliancepolicydevicestatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 04fd20300a160..13d3bfd8ceea9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -693,7 +693,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 : deviceComplianceDeviceStatus +BODYPARAMETER ``: deviceComplianceDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -705,7 +705,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -744,3 +744,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 22674cde07891..9daf2cff6f49d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -666,7 +666,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 : deviceComplianceDeviceOverview +BODYPARAMETER ``: deviceComplianceDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -678,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -717,3 +717,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 7c6e0fdf17218..ff74a58b293ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -556,7 +556,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 : Scheduled Action for Rule +BODYPARAMETER ``: Scheduled Action for Rule [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -572,7 +572,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -621,3 +621,25 @@ Valid values 0 to 8760 ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 212fd0e0fb6d6..9ac5ace52c40f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -641,7 +641,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 : Scheduled Action Configuration +BODYPARAMETER ``: Scheduled Action Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -651,7 +651,7 @@ Valid values 0 to 8760 [NotificationMessageCcList ]: A list of group IDs to speicify who to CC this notification message to. [NotificationTemplateId ]: What notification Message template to use -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -690,3 +690,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 0ea2d931ccab9..4eb1d4ffa5235 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -785,7 +785,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 : Device Compilance Policy Setting State summary across the account. +BODYPARAMETER ``: Device Compilance Policy Setting State summary across the account. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -829,7 +829,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: The User PrincipalName that is being reported -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -868,3 +868,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index bd4dd6e0850dc..e435cbab0bae3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.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. -BODYPARAMETER : Device compliance setting State for a given device. +BODYPARAMETER ``: Device compliance setting State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -826,7 +826,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: The User PrincipalName that is being reported -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -865,3 +865,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 62e2eefa6f5bd..547872d5a2dc2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -635,7 +635,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 : deviceComplianceUserStatus +BODYPARAMETER ``: deviceComplianceUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -645,7 +645,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -684,3 +684,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 2f1d7549e08d4..2fcd2033b6566 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -666,7 +666,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 : deviceComplianceUserOverview +BODYPARAMETER ``: deviceComplianceUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -678,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending Users [SuccessCount ]: Number of succeeded Users -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -717,3 +717,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md index ccb977182f734..036b8c8ce0e43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md @@ -794,7 +794,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : Device Configuration. +BODYPARAMETER ``: Device Configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -885,7 +885,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -DEVICESTATUSOVERVIEW : deviceConfigurationDeviceOverview +DEVICESTATUSOVERVIEW ``: deviceConfigurationDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -897,7 +897,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -941,7 +941,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -USERSTATUSOVERVIEW : deviceConfigurationUserOverview +USERSTATUSOVERVIEW ``: deviceConfigurationUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -957,3 +957,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md index 5ba5efa2dcfd6..8159233a007d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md @@ -524,14 +524,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : The device configuration assignment entity assigns an AAD group to a specific device configuration. +BODYPARAMETER ``: The device configuration assignment entity assigns an AAD group to a specific device configuration. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -570,3 +570,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 7c2bf2cc29b5e..853e9fc11a832 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -752,7 +752,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 : Device Compilance Policy and Configuration for a Setting State summary +BODYPARAMETER ``: Device Compilance Policy and Configuration for a Setting State summary [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -766,7 +766,7 @@ Read-only. [SettingName ]: Name of the setting [UnknownDeviceCount ]: Device Unkown count for the setting -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -805,3 +805,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index c940eb63779e6..bf42814280223 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.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 : deviceConfigurationDeviceStateSummary +BODYPARAMETER ``: deviceConfigurationDeviceStateSummary [(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/update-mgdevicemanagementdeviceconfigurationdevicestatesummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md index b1d1d7e18e3f1..3580415d263ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -693,7 +693,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 : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -705,7 +705,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -744,3 +744,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 847ae889b444c..37d8f760366bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -666,7 +666,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 : deviceConfigurationDeviceOverview +BODYPARAMETER ``: deviceConfigurationDeviceOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -678,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending devices [SuccessCount ]: Number of succeeded devices -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -717,3 +717,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md index aeedd9a65566c..dcc80ba93e0a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -636,7 +636,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 : deviceConfigurationUserStatus +BODYPARAMETER ``: deviceConfigurationUserStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -646,7 +646,7 @@ Read-only. [UserDisplayName ]: User name of the DevicePolicyStatus. [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -685,3 +685,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index d4fe0a898f80e..b73e7fbe94599 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -666,7 +666,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 : deviceConfigurationUserOverview +BODYPARAMETER ``: deviceConfigurationUserOverview [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -678,7 +678,7 @@ Read-only. [PendingCount ]: Number of pending Users [SuccessCount ]: Number of succeeded Users -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -717,3 +717,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatusoverview) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md index 81e44bb1525d3..a84da7ce600bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md @@ -1083,7 +1083,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 : Devices that are managed or pre-enrolled through Intune. +BODYPARAMETER ``: Devices that are managed or pre-enrolled through Intune. Limited support for $filter: Only properties whose descriptions mention support for $filter may be used, and combinations of those filtered properties must use 'and', not 'or'. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -2121,7 +2121,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 @@ -6305,8 +6305,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. @@ -6364,7 +6364,7 @@ Defaults to setting on client device. [TamperProtectionEnabled ]: When TRUE indicates the Windows Defender tamper protection feature is enabled, when FALSE indicates the Windows Defender tamper protection feature is not enabled. Defaults to setting on client device. -CONFIGURATIONMANAGERCLIENTENABLEDFEATURES : configuration Manager client enabled features +CONFIGURATIONMANAGERCLIENTENABLEDFEATURES ``: configuration Manager client enabled features [(Any) ]: This indicates any property can be added to this object. [CompliancePolicy ]: Whether compliance policy is managed by Intune [DeviceConfiguration ]: Whether device configuration is managed by Intune @@ -6373,7 +6373,7 @@ CONFIGURATIONMANAGERCLIENTENABLEDFEATURES ]: Whether resource access is managed by Intune [WindowsUpdateForBusiness ]: Whether Windows Update for Business is managed by Intune -DEVICECATEGORY : Device categories provides a way to organize your devices. +DEVICECATEGORY ``: Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -6432,7 +6432,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -DEVICEHEALTHATTESTATIONSTATE : deviceHealthAttestationState +DEVICEHEALTHATTESTATIONSTATE ``: deviceHealthAttestationState [(Any) ]: This indicates any property can be added to this object. [AttestationIdentityKey ]: TWhen an Attestation Identity Key (AIK) is present on a device, it indicates that the device has an endorsement key (EK) certificate. [BitLockerStatus ]: On or Off of BitLocker Drive Encryption @@ -6479,7 +6479,7 @@ Possible values are 'enabled', 'disabled' and 'notApplicable'. Default value is 'notApplicable'. [WindowsPe ]: Operating system running with limited services that is used to prepare a computer for Windows -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -7425,7 +7425,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 @@ -11795,8 +11795,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. @@ -11806,7 +11806,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? -WINDOWSPROTECTIONSTATE : Device protection status entity. +WINDOWSPROTECTIONSTATE ``: Device protection status entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -11859,3 +11859,25 @@ Defaults to setting on client device. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md index db9a0636c04b4..57de885188af5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md @@ -520,7 +520,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 : Device categories provides a way to organize your devices. +BODYPARAMETER ``: Device categories provides a way to organize your devices. Using device categories, company administrators can define their own categories that make sense to their company. These categories can then be applied to a device in the Intune Azure console or selected by a user during device enrollment. You can filter reports and create dynamic Azure Active Directory device groups based on device categories. [(Any) ]: This indicates any property can be added to this object. @@ -529,7 +529,7 @@ Read-only. [Description ]: Optional description for the device category. [DisplayName ]: Display name for the device category. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -568,3 +568,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md index ec36b3cc8175f..e717ea91c4e81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -657,7 +657,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 : Device Compliance Policy State for a given device. +BODYPARAMETER ``: Device Compliance Policy State for a given device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -683,7 +683,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -739,3 +739,25 @@ SETTINGSTATES : . ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecompliancepolicystate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md index 3ede4f961cd48..c3dc28413e601 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md @@ -657,7 +657,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 : Support for this Entity is being deprecated starting May 2026 & will no longer be supported. +BODYPARAMETER ``: Support for this Entity is being deprecated starting May 2026 & will no longer be supported. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -683,7 +683,7 @@ Read-only. [State ]: complianceStatus [Version ]: The version of the policy -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -739,3 +739,25 @@ SETTINGSTATES : . ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddeviceconfigurationstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md index feb355bcb0960..d35759e294b6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -713,7 +713,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 : Windows Log Collection request entity. +BODYPARAMETER ``: Windows Log Collection request entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -727,7 +727,7 @@ Read-only. Valid values -1.79769313486232E+308 to 1.79769313486232E+308 [Status ]: AppLogUploadStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -766,3 +766,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicelogcollectionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md index 1e8d038386b5f..a633e84b46e4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.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 : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [UpdateWindowsDeviceAccountActionParameter ]: updateWindowsDeviceAccountActionParameter [(Any) ]: This indicates any property can be added to this object. @@ -512,7 +512,7 @@ BODYPARAMETER ]: [SessionInitiationProtocalAddress ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -547,7 +547,7 @@ INPUTOBJECT : Identity Parameter [WindowsInformationProtectionNetworkLearningSummaryId ]: The unique identifier of windowsInformationProtectionNetworkLearningSummary [WindowsMalwareInformationId ]: The unique identifier of windowsMalwareInformation -UPDATEWINDOWSDEVICEACCOUNTACTIONPARAMETER : updateWindowsDeviceAccountActionParameter +UPDATEWINDOWSDEVICEACCOUNTACTIONPARAMETER ``: updateWindowsDeviceAccountActionParameter [(Any) ]: This indicates any property can be added to this object. [CalendarSyncEnabled ]: [DeviceAccount ]: windowsDeviceAccount @@ -562,3 +562,25 @@ UPDATEWINDOWSDEVICEACCOUNTACTIONPARAMETER : Device protection status entity. +BODYPARAMETER ``: Device protection status entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1150,7 +1150,7 @@ Read-only. [State ]: Malware current status [ThreatState ]: Malware threat status -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -1189,3 +1189,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 57eda1384a981..f30a21e1e690b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -771,7 +771,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 : Malware detection entity. +BODYPARAMETER ``: Malware detection entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -786,7 +786,7 @@ Read-only. [State ]: Malware current status [ThreatState ]: Malware threat status -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -825,3 +825,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md index feb6f4be37d9d..f5dc766be62e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -503,7 +503,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -BODYPARAMETER : mobileAppTroubleshootingEvent +BODYPARAMETER ``: mobileAppTroubleshootingEvent [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -515,7 +515,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -554,3 +554,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 00c166c46c0e0..194135f04284e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -611,7 +611,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 for AppLogCollectionRequest contains all logs values. +BODYPARAMETER ``: Entity for AppLogCollectionRequest contains all logs values. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -620,7 +620,7 @@ Read-only. [ErrorMessage ]: Indicates error message if any during the upload process. [Status ]: AppLogUploadStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -659,3 +659,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md index 7de0c90f85d8d..d77937f3fe5a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md @@ -643,7 +643,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 : Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. +BODYPARAMETER ``: Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance. [(Any) ]: This indicates any property can be added to this object. @@ -666,7 +666,7 @@ To unset, set this property to true on another Localized Notification Message. [Subject ]: The Message Template Subject. [RoleScopeTagIds ]: List of Scope Tags for this Entity instance. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -716,3 +716,25 @@ To unset, set this property to true on another Localized Notification Message. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 8da9118b6870c..5c45635b1ad0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -639,7 +639,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 text content of a Notification Message Template for the specified locale. +BODYPARAMETER ``: The text content of a Notification Message Template for the specified locale. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -651,7 +651,7 @@ To unset, set this property to true on another Localized Notification Message. [MessageTemplate ]: The Message Template content. [Subject ]: The Message Template Subject. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -690,3 +690,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md index 20baedb546a52..5a952c0d1e1d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md @@ -517,14 +517,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Event representing an general failure. +BODYPARAMETER ``: Event representing an general failure. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [CorrelationId ]: Id used for tracing the failure in the service. [EventDateTime ]: Time when the event occurred . -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -563,3 +563,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementtroubleshootingevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index eb0130fedbd67..cb675272cf75d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -555,7 +555,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 : Windows Information Protection AppLearning Summary entity. +BODYPARAMETER ``: Windows Information Protection AppLearning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -563,7 +563,7 @@ Read-only. [ApplicationType ]: Possible types of Application [DeviceCount ]: Device Count -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -602,3 +602,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionapplearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index ae0756d455568..b3900fbd2101e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -525,14 +525,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Windows Information Protection Network learning Summary entity. +BODYPARAMETER ``: Windows Information Protection Network learning Summary entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [DeviceCount ]: Device Count [Url ]: Website url -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -571,3 +571,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md index 4ec7ab4632f3a..7028c74b607cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md @@ -639,7 +639,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 : Malware information entity. +BODYPARAMETER ``: Malware information entity. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -668,7 +668,7 @@ Read-only. [LastStateChangeDateTime ]: The last time this particular threat was changed [ThreatState ]: Malware threat status -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -707,3 +707,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 37c8b02e3be72..247596108dccd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -668,7 +668,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 : Malware state for a windows device +BODYPARAMETER ``: Malware state for a windows device [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -679,7 +679,7 @@ Read-only. [LastStateChangeDateTime ]: The last time this particular threat was changed [ThreatState ]: Malware threat status -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AppLogCollectionRequestId ]: The unique identifier of appLogCollectionRequest [BrowserSharedCookieId ]: The unique identifier of browserSharedCookie [BrowserSiteId ]: The unique identifier of browserSite @@ -718,3 +718,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) + + + + + + + + + + + + + + + + + + + + + + From 66730a93c2d3a065dfa93f40488014e6c167d323 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:26:22 +0000 Subject: [PATCH 12/17] Inserted permissions Table --- .../Clear-MgDeviceManagementManagedDevice.md | 8 ++++++++ .../Disable-MgDeviceManagementManagedDeviceLostMode.md | 8 ++++++++ .../Find-MgDeviceManagementManagedDevice.md | 8 ++++++++ .../Get-MgAdminEdgeInternetExplorerModeSiteList.md | 8 ++++++++ .../Get-MgAdminEdgeInternetExplorerModeSiteListCount.md | 8 ++++++++ ...MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 8 ++++++++ ...inEdgeInternetExplorerModeSiteListSharedCookieCount.md | 8 ++++++++ .../Get-MgAdminEdgeInternetExplorerModeSiteListSite.md | 8 ++++++++ ...et-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md | 8 ++++++++ .../Get-MgDeviceManagement.md | 8 ++++++++ .../Get-MgDeviceManagementDetectedApp.md | 8 ++++++++ .../Get-MgDeviceManagementDetectedAppCount.md | 8 ++++++++ .../Get-MgDeviceManagementDetectedAppManagedDevice.md | 8 ++++++++ ...Get-MgDeviceManagementDetectedAppManagedDeviceCount.md | 8 ++++++++ .../Get-MgDeviceManagementDeviceCategory.md | 8 ++++++++ .../Get-MgDeviceManagementDeviceCategoryCount.md | 8 ++++++++ .../Get-MgDeviceManagementDeviceCompliancePolicy.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 8 ++++++++ ...viceManagementDeviceCompliancePolicyAssignmentCount.md | 8 ++++++++ .../Get-MgDeviceManagementDeviceCompliancePolicyCount.md | 8 ++++++++ ...mentDeviceCompliancePolicyDeviceSettingStateSummary.md | 8 ++++++++ ...eviceCompliancePolicyDeviceSettingStateSummaryCount.md | 8 ++++++++ ...eManagementDeviceCompliancePolicyDeviceStateSummary.md | 8 ++++++++ ...gDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 8 ++++++++ ...ceManagementDeviceCompliancePolicyDeviceStatusCount.md | 8 ++++++++ ...anagementDeviceCompliancePolicyDeviceStatusOverview.md | 8 ++++++++ ...agementDeviceCompliancePolicyScheduledActionForRule.md | 8 ++++++++ ...ntDeviceCompliancePolicyScheduledActionForRuleCount.md | 8 ++++++++ ...yScheduledActionForRuleScheduledActionConfiguration.md | 8 ++++++++ ...duledActionForRuleScheduledActionConfigurationCount.md | 8 ++++++++ ...ManagementDeviceCompliancePolicySettingStateSummary.md | 8 ++++++++ ...ementDeviceCompliancePolicySettingStateSummaryCount.md | 8 ++++++++ ...licySettingStateSummaryDeviceComplianceSettingState.md | 8 ++++++++ ...ettingStateSummaryDeviceComplianceSettingStateCount.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 8 ++++++++ ...viceManagementDeviceCompliancePolicyUserStatusCount.md | 8 ++++++++ ...eManagementDeviceCompliancePolicyUserStatusOverview.md | 8 ++++++++ .../Get-MgDeviceManagementDeviceConfiguration.md | 8 ++++++++ ...Get-MgDeviceManagementDeviceConfigurationAssignment.md | 8 ++++++++ ...gDeviceManagementDeviceConfigurationAssignmentCount.md | 8 ++++++++ .../Get-MgDeviceManagementDeviceConfigurationCount.md | 8 ++++++++ ...agementDeviceConfigurationDeviceSettingStateSummary.md | 8 ++++++++ ...ntDeviceConfigurationDeviceSettingStateSummaryCount.md | 8 ++++++++ ...viceManagementDeviceConfigurationDeviceStateSummary.md | 8 ++++++++ ...t-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 8 ++++++++ ...eviceManagementDeviceConfigurationDeviceStatusCount.md | 8 ++++++++ ...ceManagementDeviceConfigurationDeviceStatusOverview.md | 8 ++++++++ ...nagementDeviceConfigurationOmaSettingPlainTextValue.md | 8 ++++++++ ...Get-MgDeviceManagementDeviceConfigurationUserStatus.md | 8 ++++++++ ...gDeviceManagementDeviceConfigurationUserStatusCount.md | 8 ++++++++ ...viceManagementDeviceConfigurationUserStatusOverview.md | 8 ++++++++ .../Get-MgDeviceManagementManagedDevice.md | 8 ++++++++ .../Get-MgDeviceManagementManagedDeviceCount.md | 8 ++++++++ .../Get-MgDeviceManagementManagedDeviceOverview.md | 8 ++++++++ ...Get-MgDeviceManagementMobileAppTroubleshootingEvent.md | 8 ++++++++ ...obileAppTroubleshootingEventAppLogCollectionRequest.md | 8 ++++++++ ...AppTroubleshootingEventAppLogCollectionRequestCount.md | 8 ++++++++ ...gDeviceManagementMobileAppTroubleshootingEventCount.md | 8 ++++++++ .../Get-MgDeviceManagementNotificationMessageTemplate.md | 8 ++++++++ ...-MgDeviceManagementNotificationMessageTemplateCount.md | 8 ++++++++ ...ficationMessageTemplateLocalizedNotificationMessage.md | 8 ++++++++ ...ionMessageTemplateLocalizedNotificationMessageCount.md | 8 ++++++++ .../Get-MgDeviceManagementSoftwareUpdateStatusSummary.md | 8 ++++++++ .../Get-MgDeviceManagementTroubleshootingEvent.md | 8 ++++++++ .../Get-MgDeviceManagementTroubleshootingEventCount.md | 8 ++++++++ ...ementWindowsInformationProtectionAppLearningSummary.md | 8 ++++++++ ...WindowsInformationProtectionAppLearningSummaryCount.md | 8 ++++++++ ...tWindowsInformationProtectionNetworkLearningSummary.md | 8 ++++++++ ...owsInformationProtectionNetworkLearningSummaryCount.md | 8 ++++++++ .../Get-MgDeviceManagementWindowsMalwareInformation.md | 8 ++++++++ ...et-MgDeviceManagementWindowsMalwareInformationCount.md | 8 ++++++++ ...nagementWindowsMalwareInformationDeviceMalwareState.md | 8 ++++++++ ...entWindowsMalwareInformationDeviceMalwareStateCount.md | 8 ++++++++ ...e-MgCleanDeviceManagementManagedDeviceWindowsDevice.md | 8 ++++++++ .../Invoke-MgDownDeviceManagementManagedDeviceShut.md | 8 ++++++++ ...eManagementManagedDeviceSharedAppleDeviceActiveUser.md | 8 ++++++++ .../Invoke-MgRetireDeviceManagementManagedDevice.md | 8 ++++++++ ...-MgScanDeviceManagementManagedDeviceWindowsDefender.md | 8 ++++++++ ...DeviceManagementDeviceCompliancePolicyActionForRule.md | 8 ++++++++ .../Lock-MgDeviceManagementManagedDeviceRemote.md | 8 ++++++++ .../New-MgAdminEdgeInternetExplorerModeSiteList.md | 8 ++++++++ ...MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 8 ++++++++ .../New-MgAdminEdgeInternetExplorerModeSiteListSite.md | 8 ++++++++ .../New-MgDeviceManagementDetectedApp.md | 8 ++++++++ .../New-MgDeviceManagementDeviceCategory.md | 8 ++++++++ .../New-MgDeviceManagementDeviceCompliancePolicy.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 8 ++++++++ ...mentDeviceCompliancePolicyDeviceSettingStateSummary.md | 8 ++++++++ ...gDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 8 ++++++++ ...agementDeviceCompliancePolicyScheduledActionForRule.md | 8 ++++++++ ...yScheduledActionForRuleScheduledActionConfiguration.md | 8 ++++++++ ...ManagementDeviceCompliancePolicySettingStateSummary.md | 8 ++++++++ ...licySettingStateSummaryDeviceComplianceSettingState.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 8 ++++++++ .../New-MgDeviceManagementDeviceConfiguration.md | 8 ++++++++ ...New-MgDeviceManagementDeviceConfigurationAssignment.md | 8 ++++++++ ...agementDeviceConfigurationDeviceSettingStateSummary.md | 8 ++++++++ ...w-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 8 ++++++++ ...New-MgDeviceManagementDeviceConfigurationUserStatus.md | 8 ++++++++ .../New-MgDeviceManagementManagedDevice.md | 8 ++++++++ ...New-MgDeviceManagementMobileAppTroubleshootingEvent.md | 8 ++++++++ ...obileAppTroubleshootingEventAppLogCollectionRequest.md | 8 ++++++++ ...ubleshootingEventAppLogCollectionRequestDownloadUrl.md | 8 ++++++++ .../New-MgDeviceManagementNotificationMessageTemplate.md | 8 ++++++++ ...ficationMessageTemplateLocalizedNotificationMessage.md | 8 ++++++++ .../New-MgDeviceManagementTroubleshootingEvent.md | 8 ++++++++ ...ementWindowsInformationProtectionAppLearningSummary.md | 8 ++++++++ ...tWindowsInformationProtectionNetworkLearningSummary.md | 8 ++++++++ .../New-MgDeviceManagementWindowsMalwareInformation.md | 8 ++++++++ ...nagementWindowsMalwareInformationDeviceMalwareState.md | 8 ++++++++ .../Publish-MgAdminEdgeInternetExplorerModeSiteList.md | 8 ++++++++ .../Remove-MgAdminEdgeInternetExplorerModeSiteList.md | 8 ++++++++ ...MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 8 ++++++++ .../Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md | 8 ++++++++ .../Remove-MgDeviceManagementDetectedApp.md | 8 ++++++++ .../Remove-MgDeviceManagementDeviceCategory.md | 8 ++++++++ .../Remove-MgDeviceManagementDeviceCompliancePolicy.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 8 ++++++++ ...mentDeviceCompliancePolicyDeviceSettingStateSummary.md | 8 ++++++++ ...gDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 8 ++++++++ ...agementDeviceCompliancePolicyScheduledActionForRule.md | 8 ++++++++ ...yScheduledActionForRuleScheduledActionConfiguration.md | 8 ++++++++ ...ManagementDeviceCompliancePolicySettingStateSummary.md | 8 ++++++++ ...licySettingStateSummaryDeviceComplianceSettingState.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 8 ++++++++ .../Remove-MgDeviceManagementDeviceConfiguration.md | 8 ++++++++ ...ove-MgDeviceManagementDeviceConfigurationAssignment.md | 8 ++++++++ ...agementDeviceConfigurationDeviceSettingStateSummary.md | 8 ++++++++ ...e-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 8 ++++++++ ...ove-MgDeviceManagementDeviceConfigurationUserStatus.md | 8 ++++++++ .../Remove-MgDeviceManagementManagedDevice.md | 8 ++++++++ ...iceManagementManagedDeviceUserFromSharedAppleDevice.md | 8 ++++++++ ...ove-MgDeviceManagementMobileAppTroubleshootingEvent.md | 8 ++++++++ ...obileAppTroubleshootingEventAppLogCollectionRequest.md | 8 ++++++++ ...emove-MgDeviceManagementNotificationMessageTemplate.md | 8 ++++++++ ...ficationMessageTemplateLocalizedNotificationMessage.md | 8 ++++++++ .../Remove-MgDeviceManagementTroubleshootingEvent.md | 8 ++++++++ ...ementWindowsInformationProtectionAppLearningSummary.md | 8 ++++++++ ...tWindowsInformationProtectionNetworkLearningSummary.md | 8 ++++++++ .../Remove-MgDeviceManagementWindowsMalwareInformation.md | 8 ++++++++ ...nagementWindowsMalwareInformationDeviceMalwareState.md | 8 ++++++++ ...est-MgDeviceManagementManagedDeviceRemoteAssistance.md | 8 ++++++++ .../Reset-MgDeviceManagementManagedDevicePasscode.md | 8 ++++++++ .../Restart-MgDeviceManagementManagedDeviceNow.md | 8 ++++++++ .../Restore-MgDeviceManagementManagedDevicePasscode.md | 8 ++++++++ ...iceManagementNotificationMessageTemplateTestMessage.md | 8 ++++++++ .../Set-MgDeviceManagementDeviceCompliancePolicy.md | 8 ++++++++ .../Set-MgDeviceManagementDeviceConfiguration.md | 8 ++++++++ .../Skip-MgDeviceManagementManagedDeviceActivationLock.md | 8 ++++++++ .../Sync-MgDeviceManagementManagedDevice.md | 8 ++++++++ .../Update-MgAdminEdgeInternetExplorerModeSiteList.md | 8 ++++++++ ...MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 8 ++++++++ .../Update-MgAdminEdgeInternetExplorerModeSiteListSite.md | 8 ++++++++ .../Update-MgDeviceManagement.md | 8 ++++++++ .../Update-MgDeviceManagementDetectedApp.md | 8 ++++++++ .../Update-MgDeviceManagementDeviceCategory.md | 8 ++++++++ .../Update-MgDeviceManagementDeviceCompliancePolicy.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 8 ++++++++ ...mentDeviceCompliancePolicyDeviceSettingStateSummary.md | 8 ++++++++ ...eManagementDeviceCompliancePolicyDeviceStateSummary.md | 8 ++++++++ ...gDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 8 ++++++++ ...anagementDeviceCompliancePolicyDeviceStatusOverview.md | 8 ++++++++ ...agementDeviceCompliancePolicyScheduledActionForRule.md | 8 ++++++++ ...yScheduledActionForRuleScheduledActionConfiguration.md | 8 ++++++++ ...ManagementDeviceCompliancePolicySettingStateSummary.md | 8 ++++++++ ...licySettingStateSummaryDeviceComplianceSettingState.md | 8 ++++++++ ...-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 8 ++++++++ ...eManagementDeviceCompliancePolicyUserStatusOverview.md | 8 ++++++++ .../Update-MgDeviceManagementDeviceConfiguration.md | 8 ++++++++ ...ate-MgDeviceManagementDeviceConfigurationAssignment.md | 8 ++++++++ ...agementDeviceConfigurationDeviceSettingStateSummary.md | 8 ++++++++ ...viceManagementDeviceConfigurationDeviceStateSummary.md | 8 ++++++++ ...e-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 8 ++++++++ ...ceManagementDeviceConfigurationDeviceStatusOverview.md | 8 ++++++++ ...ate-MgDeviceManagementDeviceConfigurationUserStatus.md | 8 ++++++++ ...viceManagementDeviceConfigurationUserStatusOverview.md | 8 ++++++++ .../Update-MgDeviceManagementManagedDevice.md | 8 ++++++++ ...MgDeviceManagementManagedDeviceWindowsDeviceAccount.md | 8 ++++++++ ...ate-MgDeviceManagementMobileAppTroubleshootingEvent.md | 8 ++++++++ ...obileAppTroubleshootingEventAppLogCollectionRequest.md | 8 ++++++++ ...pdate-MgDeviceManagementNotificationMessageTemplate.md | 8 ++++++++ ...ficationMessageTemplateLocalizedNotificationMessage.md | 8 ++++++++ .../Update-MgDeviceManagementTroubleshootingEvent.md | 8 ++++++++ ...ementWindowsInformationProtectionAppLearningSummary.md | 8 ++++++++ ...tWindowsInformationProtectionNetworkLearningSummary.md | 8 ++++++++ .../Update-MgDeviceManagementWindowsMalwareInformation.md | 8 ++++++++ ...nagementWindowsMalwareInformationDeviceMalwareState.md | 8 ++++++++ 187 files changed, 1496 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md index d8e9d5ed148ad..b930c6b37fdf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Wipe a device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md index 96c3dd06a9009..5ae053f681145 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Disable lost mode +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md index c8f45d2d9d79a..984c98babe013 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Locate a device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md index 81816eb4712b7..68edb4c47b4f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Get a browserSiteList that contains browserSite and browserSharedCookie resources. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md index d1f7d1ffe1152..bd5c81deefc4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.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) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 6b68c2d2060a0..33e2c80a42fa7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md index 5f6bc10a179a9..b4ee2fb6546a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.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) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md index 6307e959cc479..98c8076f9bac7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Get a browserSite that resides on a browserSiteList. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md index 66a895c260767..e892ed07d9567 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md @@ -45,6 +45,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) | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md index e1be51bd47cef..4a15ceea2ab86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md index 14c94a8af7702..a6cca8e5a0b54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The list of detected apps associated with a device. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md index f06ba6fe3323c..dea26add8c292 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.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) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md index 7609a343d0e0e..5b89cbdd2a249 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The devices that have the discovered application installed +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md index 711d3e7c4a593..5b07cc3ab4232 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md @@ -45,6 +45,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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md index 4448ef1d5aa47..0e18029ac3a69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The list of device categories with the tenant. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md index e24afd97616f5..af8669ceb3c91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.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, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md index f0b9279091918..4f76c502392f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The device compliance policies. +**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/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 50b66f14a3e50..f6661853593a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The collection of assignments for this compliance policy. +**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/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md index 09193c12a556e..04ab2c92a8b4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.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) | 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/Get-MgDeviceManagementDeviceCompliancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md index c79174426902f..7db6f75dd552b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.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/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 9ca1713250176..efafc19ab04e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, Compliance Setting State Device Summary +**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/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md index 43fcd00169894..9bfb6e755489a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.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) | 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/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index fb8e4260dda78..56dd181ac4374 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, The device compliance state summary 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/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 4694446a92d24..f6ce5f8731eb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, List of DeviceComplianceDeviceStatus. +**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/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md index 55836d818f4a7..bd80f4011578d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.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) | 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/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index dbb5d411db8d3..fa0baa1d929c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Device compliance devices status overview +**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/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index a9337047474bc..87fa9d52b1b14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -61,6 +61,14 @@ This cmdlet has the following aliases, The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. +**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/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md index 083efb23124fa..5278bee5fb3f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.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) | 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/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 08bb8d7d56dd4..d62ae4a33f718 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -61,6 +61,14 @@ This cmdlet has the following aliases, The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. +**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/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md index dddf6aad68186..9b128573e47bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md @@ -47,6 +47,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/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 6ecd875a0ab90..5b3cbdd7027bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The summary states of compliance policy settings 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/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md index ea6c94e6fc109..b212ef1613222 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.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/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index c6e9fb42d5db7..cee7e481eaa40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, Get deviceComplianceSettingStates from deviceManagement +**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/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md index 1c042aa38f7d7..c077e1abecef3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.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) | 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/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index ec534d8b6222c..1c48f3be762db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, List of DeviceComplianceUserStatus. +**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/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md index 1939d1e7adf9d..1c079d0f269bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.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) | 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/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index b39bb613d3836..82015a14aa5ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Device compliance users status overview +**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/Get-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md index ff30ac765a51e..f50ac0910db72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The device configurations. +**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/Get-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md index ae99b9aa44b28..220b1f257ce88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of assignments for the device configuration profile. +**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/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md index 22d23e357a820..b7f7df22da8d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.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) | 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/Get-MgDeviceManagementDeviceConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md index 08965ce2fbe1f..f85eab86a3177 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.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/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index a58588a91ae39..1773bbb1fc46c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Device Configuration Setting State Device Summary +**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/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md index 2d7fa8f79a884..6e2f3dcbf0d79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.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) | 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/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 00bd23771995f..51d71e0bf942a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, The device configuration device state summary 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/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 7a0506a1e6b89..a250ef9c31dc9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Device configuration installation status by device. +**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/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md index d3ee8056a79e9..f216ad579dd0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.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) | 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/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index a8d92424366dc..f2ad5f65bf289 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Device Configuration devices status overview +**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/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md index 9a801d475bfb4..36706d5b3ffe2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Invoke function getOmaSettingPlainTextValue +**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/Get-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md index 250e1e54f2a3d..d22cf0d59cde8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Device configuration installation status by user. +**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/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md index 50fa428992d7c..99e120dc76e8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.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) | 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/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 93561e1bf8525..11af86bd4d09e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Device Configuration users status overview +**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/Get-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md index d8463c7e101ed..56adc97713d0a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The list of managed devices. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md index 40b913eb0516b..fcac7b7417ded 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.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) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md index 6706c09375a61..a42b782760719 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Device overview +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md index d8234764527f4..7f95b45dbeb52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The collection property of MobileAppTroubleshootingEvent. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index d85c34268f201..1c875c9952fbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, Indicates collection of App Log Upload Request. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md index b2b65e2221331..2ce5340bcddb9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.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) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md index 49dbcae0a6157..d7297ec9a737f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md index d383f8fd778cf..53203ccef21bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The Notification Message Templates. +**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/Get-MgDeviceManagementNotificationMessageTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md index 7c580f31cae31..eabc6d3d2874d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.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/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 7b73c7240892a..c936e9d4133f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, The list of localized messages for this Notification Message Template. +**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/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md index cd30b8b8225b7..72c61c302cd67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.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/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md index a148c196b67ca..7366446e0a8a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, The software update status summary. +**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/Get-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md index 6a80a654693d2..5c621b33c47c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of troubleshooting events for the tenant. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md index 3e0ae59453713..5acc78cf8ab4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.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) | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 1db8ef46f5248..cd8ad93a98df8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The windows information protection app learning summaries. +**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/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md index 42ce81b5fdbc6..acca9e7f9b492 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.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/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index e916282e6ed0f..387e7b6081c12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The windows information protection network learning summaries. +**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/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md index 86fbd10f44916..6f10fe36694ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.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/Get-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md index 03735cc510907..2d87d42fc7514 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of affected malware in the tenant. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md index f32f17008d93d..1a15b522cc938 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.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) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index bcfe51ba12f52..808bc472237b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, List of devices affected by current malware with the malware state on each device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md index c482f71fd632b..bbdee0b68b09f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.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) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md index 963c23ae746a7..252d926cb9d6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Clean Windows device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md index f2b48db70a696..9da88156e299f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Shut down device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md index f9a2aa8dde4bb..89573605cc499 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Logout shared Apple device active user +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md index 2a3d9ffe4bc25..652e2fb292189 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Retire a device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md index 7eb3ac2d7ae2e..7db3e46ae094e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Invoke action windowsDefenderScan +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md index 72d1aec9ba1e7..bfcd07f121c03 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Invoke action scheduleActionsForRules +**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/Lock-MgDeviceManagementManagedDeviceRemote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md index 209031fab7d8b..c55d0b5a509f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Remote lock +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md index a543af93257af..169927071f373 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create a new browserSiteList object to support Internet Explorer mode. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index ccbe69ccfbd1d..267ff78b8281f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Create a new browserSharedCookie object in a browserSiteList. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md index 3207795d86311..741eb22e5a639 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -78,6 +78,14 @@ This cmdlet has the following aliases, Create a new browserSite object in a browserSiteList. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md index 549eb4addd7c3..1bbf9cda986e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Create new navigation property to detectedApps for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md index e5f0f715c00f6..bdf774bd05673 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceCategories for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md index 517bf99dd240f..a3d460035a36d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md @@ -53,6 +53,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceCompliancePolicies 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/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 1eb3a35135395..cbf0f3638ac78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -66,6 +66,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) | 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/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 428ecdbd230ad..6cda904343ba5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceSettingStateSummaries 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/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 22c017a99d929..8fa5d28f618a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceStatuses 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/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 4e64da1f38fee..194a8407aa485 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Create new navigation property to scheduledActionsForRule 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/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 0ffe2651824e8..f4febd358934c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Create new navigation property to scheduledActionConfigurations 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/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index b44de16c1b6a6..0c591420dd49a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -50,6 +50,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceCompliancePolicySettingStateSummaries 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/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 9bef8eb8b7db0..16b04cbd9ebfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -76,6 +76,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceComplianceSettingStates 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/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 6540bc953ebd1..cc3c0f8f99b75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Create new navigation property to userStatuses 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/New-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md index 3139fa9cdfc0a..4bb3f01ee4a25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md @@ -52,6 +52,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceConfigurations 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/New-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md index 775de910844e0..b349db195ccbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md @@ -66,6 +66,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) | 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/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 33ba43f6c2e8d..c764eeca289e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceSettingStateSummaries 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/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md index dc47d02cdc7ff..3284fff9b42d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceStatuses 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/New-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md index 484d078930c60..4fea291aaf38f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Create new navigation property to userStatuses 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/New-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md index ce5cc4f74c565..e8bd07ea50b0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, Create new navigation property to managedDevices for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md index 96e694caab2a6..adfb20540e615 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 64b38d0a65f01..fbf4b506d36be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Create new navigation property to appLogCollectionRequests for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md index 36641f3ffdad3..7e5dc15fe607d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Invoke action createDownloadUrl +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md index 4eb34d385bddb..fa85034b60b99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create new navigation property to notificationMessageTemplates 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/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 667b6035d42c4..0db8f0889a096 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Create new navigation property to localizedNotificationMessages 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/New-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md index 01f25f3628ba8..1c16b01f6e1bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Create new navigation property to troubleshootingEvents for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 33f297a625056..2fea5ca1971b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Create new navigation property to windowsInformationProtectionAppLearningSummaries 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/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 5fd2c7f2b63fc..b5a889b250f83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Create new navigation property to windowsInformationProtectionNetworkLearningSummaries 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/New-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md index 115dfb58eb50c..0db87ca194eba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md @@ -49,6 +49,14 @@ This cmdlet has the following aliases, Create new navigation property to windowsMalwareInformation for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index e4e6c6dad2910..f15aa4e3fe85c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -73,6 +73,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceMalwareStates for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md index b2427b0fa55e9..5095cd4cff084 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Publish the specified browserSiteList for devices to download. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md index 5b1f5bc991479..a9312af3b7508 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete a browserSiteList object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index e9a475ad4740c..f9b5a2949e400 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete a browserSharedCookie from a browserSiteList. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md index 5404c44f7a730..24c3edd8c827a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete a browserSite from a browserSiteList. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md index 96f2a0cc4ed9b..136f340c3599e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property detectedApps for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md index fb03050d90dae..f7c509f2b91df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property deviceCategories for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md index 2508d5c074980..1442c821dd199 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property deviceCompliancePolicies 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/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 851d1fffe1d84..b4b973cc7548e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -45,6 +45,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) | 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/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 39ab67bf042fd..0ed81fecc72d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceSettingStateSummaries 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/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 6b28c9bb27b0b..da2c7c5840eda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property deviceStatuses 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/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 8ae2a6eaaab5b..0abdc43ec1c28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property scheduledActionsForRule 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/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index a94bdbc872cdc..9065f293e7d6d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Delete navigation property scheduledActionConfigurations 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/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 4d352551e4fea..0fad16a170912 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceCompliancePolicySettingStateSummaries 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/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 0dea8e2e55121..09bab29986cde 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceComplianceSettingStates 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/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 84ff43229faad..ef808f7acc810 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property userStatuses 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/Remove-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md index 42b99987a70b6..fe891fb076b20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property deviceConfigurations 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/Remove-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md index 55dfd4e2009ee..676c0e0ef3ac0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md @@ -45,6 +45,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) | 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/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 3317736629042..de65f97c521de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceSettingStateSummaries 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/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md index a18310b49328e..fd25e1d79ad7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property deviceStatuses 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/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md index 9123eb7c4ef23..f3973f36bf0cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property userStatuses 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/Remove-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md index 0592befae3001..022e82ad29d86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property managedDevices for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md index fd38f475354ba..50d6738b98e8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md @@ -67,6 +67,14 @@ This cmdlet has the following aliases, Delete user from shared Apple device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md index 1befcc8f9907a..2aedfeb2da32f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property mobileAppTroubleshootingEvents for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 32587ff55f2b7..6ed528c132a4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property appLogCollectionRequests for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md index 0bad48c211095..559756deb8215 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property notificationMessageTemplates 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/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 7eb3f2d89918d..11472dcaab886 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property localizedNotificationMessages 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/Remove-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md index 71fca61e3712d..e7d6e4ca1d846 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property troubleshootingEvents for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index dc6c41e286fae..696528c12ff00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property windowsInformationProtectionAppLearningSummaries 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/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 253168feeca52..12c618350662e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property windowsInformationProtectionNetworkLearningSummaries 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/Remove-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md index 4f531339a8997..f0ba5df2eeab1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property windowsMalwareInformation for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 7c1ac4691711a..58f29b8efbdb8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property deviceMalwareStates for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md index e8a9eecfae19e..499ac260fa9a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Request remote assistance +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md index b7b3fb4a53462..cd243cd4dc389 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Reset passcode +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md index 935a5a288c0f5..2d31e23f5b5c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Reboot device +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md index 9ed9082bfac2b..18c767d25d642 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Recover passcode +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md index 654df401388f9..602ee9cf786f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Sends test message using the specified notificationMessageTemplate in the default locale +**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/Set-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md index 2930415101f85..528998fd91f68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Invoke action assign +**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/Set-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md index f0494527848fc..dfac24b1469c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Invoke action assign +**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/Skip-MgDeviceManagementManagedDeviceActivationLock.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md index d531ac60be1c7..0c650002ecaa4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Bypass activation lock +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md index 7770914a434fe..a8e3ba8e486b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Invoke action syncDevice +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md index e771dbde49851..268aecd2ab057 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Update the properties of a browserSiteList object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index f781f178f408a..07e12dc345b4a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -75,6 +75,14 @@ This cmdlet has the following aliases, Update the properties of a browserSharedCookie object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md index 3cd13a0ceb818..9674d7b8968a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -78,6 +78,14 @@ This cmdlet has the following aliases, Update the properties of a browserSite object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BrowserSiteLists.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BrowserSiteLists.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md index 74c2be77b0214..aa346b715273d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md @@ -106,6 +106,14 @@ This cmdlet has the following aliases, Update deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md index c96f35bfa8739..c9201950836f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md @@ -69,6 +69,14 @@ This cmdlet has the following aliases, Update the navigation property detectedApps in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md index 98ab05b04ef86..de3031dde0666 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Update the navigation property deviceCategories in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md index 73e8212faa850..78da51652e6c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md @@ -82,6 +82,14 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicies 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/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md index f2d806eaaa247..4c0e3049f961f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -68,6 +68,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) | 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/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index c7630aa808426..61f053aea6827 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Update the navigation property deviceSettingStateSummaries 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/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index a210d91822b9e..563a51c2fb4d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -49,6 +49,14 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicyDeviceStateSummary 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/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 13d3bfd8ceea9..5602d6317d0cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the navigation property deviceStatuses 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/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 9daf2cff6f49d..ae03aaa0cf318 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the navigation property deviceStatusOverview 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/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index ff74a58b293ff..242656d03dcc3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property scheduledActionsForRule 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/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 9ac5ace52c40f..79fb04b64a3ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -73,6 +73,14 @@ This cmdlet has the following aliases, Update the navigation property scheduledActionConfigurations 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/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 4eb1d4ffa5235..1fc1eace15e5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -78,6 +78,14 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicySettingStateSummaries 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/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index e435cbab0bae3..3efd3f897edd8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -76,6 +76,14 @@ This cmdlet has the following aliases, Update the navigation property deviceComplianceSettingStates 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/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 547872d5a2dc2..95ee4ba016458 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -69,6 +69,14 @@ This cmdlet has the following aliases, Update the navigation property userStatuses 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/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 2fcd2033b6566..fbaaef00ab4ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the navigation property userStatusOverview 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/Update-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md index 036b8c8ce0e43..bdedf79bb88fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md @@ -80,6 +80,14 @@ This cmdlet has the following aliases, Update the navigation property deviceConfigurations 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/Update-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md index 8159233a007d5..91d1106517085 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md @@ -67,6 +67,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) | 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/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 853e9fc11a832..e702fdd1e7db9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Update the navigation property deviceSettingStateSummaries 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/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index bf42814280223..f05d656599ef4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Update the navigation property deviceConfigurationDeviceStateSummaries 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/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 3580415d263ae..969fa4985e94c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the navigation property deviceStatuses 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/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 37d8f760366bd..2b39e1db5bdd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the navigation property deviceStatusOverview 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/Update-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md index dcc80ba93e0a4..c6f63d13a53e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Update the navigation property userStatuses 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/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index b73e7fbe94599..cbf1665c58c9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the navigation property userStatusOverview 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/Update-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md index a84da7ce600bf..79f6e3b8898e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md @@ -113,6 +113,14 @@ This cmdlet has the following aliases, Update the navigation property managedDevices in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md index a633e84b46e4d..15c0943acf1a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Invoke action updateWindowsDeviceAccount +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.PrivilegedOperations.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md index f5dc766be62e9..15d392524ba10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Update the navigation property mobileAppTroubleshootingEvents in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 194135f04284e..09d5d8bca8e8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the navigation property appLogCollectionRequests in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md index d77937f3fe5a9..15ff9f043d849 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property notificationMessageTemplates 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/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 5c45635b1ad0b..63d0cbcef6d5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property localizedNotificationMessages 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/Update-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md index 5a952c0d1e1d8..850ff34b00c98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Update the navigation property troubleshootingEvents in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index cb675272cf75d..0011e5c5a08e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property windowsInformationProtectionAppLearningSummaries 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/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index b3900fbd2101e..9ede21a206c10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Update the navigation property windowsInformationProtectionNetworkLearningSummaries 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/Update-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md index 7028c74b607cb..d522ae33e8c70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property windowsMalwareInformation in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 247596108dccd..eca9235348977 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Update the navigation property deviceMalwareStates in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 From a94cb6488da62364a99da7edb5f704c19be79517 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:16 +0000 Subject: [PATCH 13/17] Updated metadata parameters --- .../Clear-MgDeviceManagementManagedDevice.md | 3 +++ .../Disable-MgDeviceManagementManagedDeviceLostMode.md | 3 +++ .../Find-MgDeviceManagementManagedDevice.md | 3 +++ .../Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md | 3 +++ .../Get-MgAdminEdgeInternetExplorerMode.md | 3 +++ .../Get-MgAdminEdgeInternetExplorerModeSiteList.md | 3 +++ .../Get-MgAdminEdgeInternetExplorerModeSiteListCount.md | 3 +++ .../Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 3 +++ ...MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md | 3 +++ .../Get-MgAdminEdgeInternetExplorerModeSiteListSite.md | 3 +++ .../Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md | 3 +++ .../Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md | 3 +++ .../Get-MgDeviceManagementDetectedApp.md | 3 +++ .../Get-MgDeviceManagementDetectedAppCount.md | 3 +++ .../Get-MgDeviceManagementDetectedAppManagedDevice.md | 3 +++ .../Get-MgDeviceManagementDetectedAppManagedDeviceCount.md | 3 +++ .../Get-MgDeviceManagementDeviceCategory.md | 3 +++ .../Get-MgDeviceManagementDeviceCategoryCount.md | 3 +++ .../Get-MgDeviceManagementDeviceCompliancePolicy.md | 3 +++ .../Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 3 +++ ...-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md | 3 +++ .../Get-MgDeviceManagementDeviceCompliancePolicyCount.md | 3 +++ ...anagementDeviceCompliancePolicyDeviceSettingStateSummary.md | 3 +++ ...mentDeviceCompliancePolicyDeviceSettingStateSummaryCount.md | 3 +++ ...DeviceManagementDeviceCompliancePolicyDeviceStateSummary.md | 3 +++ ...Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 3 +++ ...gDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md | 3 +++ ...viceManagementDeviceCompliancePolicyDeviceStatusOverview.md | 3 +++ ...ceManagementDeviceCompliancePolicyScheduledActionForRule.md | 3 +++ ...agementDeviceCompliancePolicyScheduledActionForRuleCount.md | 3 +++ ...PolicyScheduledActionForRuleScheduledActionConfiguration.md | 3 +++ ...yScheduledActionForRuleScheduledActionConfigurationCount.md | 3 +++ ...eviceManagementDeviceCompliancePolicySettingStateSummary.md | 3 +++ ...ManagementDeviceCompliancePolicySettingStateSummaryCount.md | 3 +++ ...ncePolicySettingStateSummaryDeviceComplianceSettingState.md | 3 +++ ...licySettingStateSummaryDeviceComplianceSettingStateCount.md | 3 +++ .../Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 3 +++ ...-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md | 3 +++ ...DeviceManagementDeviceCompliancePolicyUserStatusOverview.md | 3 +++ .../Get-MgDeviceManagementDeviceConfiguration.md | 3 +++ .../Get-MgDeviceManagementDeviceConfigurationAssignment.md | 3 +++ ...Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md | 3 +++ .../Get-MgDeviceManagementDeviceConfigurationCount.md | 3 +++ ...ceManagementDeviceConfigurationDeviceSettingStateSummary.md | 3 +++ ...agementDeviceConfigurationDeviceSettingStateSummaryCount.md | 3 +++ ...-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md | 3 +++ .../Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 3 +++ ...t-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md | 3 +++ ...gDeviceManagementDeviceConfigurationDeviceStatusOverview.md | 3 +++ ...iceManagementDeviceConfigurationOmaSettingPlainTextValue.md | 3 +++ .../Get-MgDeviceManagementDeviceConfigurationUserStatus.md | 3 +++ ...Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md | 3 +++ ...-MgDeviceManagementDeviceConfigurationUserStatusOverview.md | 3 +++ .../Get-MgDeviceManagementManagedDevice.md | 3 +++ .../Get-MgDeviceManagementManagedDeviceCategory.md | 3 +++ .../Get-MgDeviceManagementManagedDeviceCategoryByRef.md | 3 +++ ...Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 3 +++ ...gDeviceManagementManagedDeviceCompliancePolicyStateCount.md | 3 +++ .../Get-MgDeviceManagementManagedDeviceConfigurationState.md | 3 +++ ...t-MgDeviceManagementManagedDeviceConfigurationStateCount.md | 3 +++ .../Get-MgDeviceManagementManagedDeviceCount.md | 3 +++ .../Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md | 3 +++ ...MgDeviceManagementManagedDeviceLogCollectionRequestCount.md | 3 +++ .../Get-MgDeviceManagementManagedDeviceOverview.md | 3 +++ .../Get-MgDeviceManagementManagedDeviceUser.md | 3 +++ ...et-MgDeviceManagementManagedDeviceWindowsProtectionState.md | 3 +++ ...tManagedDeviceWindowsProtectionStateDetectedMalwareState.md | 3 +++ ...gedDeviceWindowsProtectionStateDetectedMalwareStateCount.md | 3 +++ .../Get-MgDeviceManagementMobileAppTroubleshootingEvent.md | 3 +++ ...mentMobileAppTroubleshootingEventAppLogCollectionRequest.md | 3 +++ ...obileAppTroubleshootingEventAppLogCollectionRequestCount.md | 3 +++ ...Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md | 3 +++ .../Get-MgDeviceManagementNotificationMessageTemplate.md | 3 +++ .../Get-MgDeviceManagementNotificationMessageTemplateCount.md | 3 +++ ...tNotificationMessageTemplateLocalizedNotificationMessage.md | 3 +++ ...ficationMessageTemplateLocalizedNotificationMessageCount.md | 3 +++ .../Get-MgDeviceManagementSoftwareUpdateStatusSummary.md | 3 +++ .../Get-MgDeviceManagementTroubleshootingEvent.md | 3 +++ .../Get-MgDeviceManagementTroubleshootingEventCount.md | 3 +++ ...ManagementWindowsInformationProtectionAppLearningSummary.md | 3 +++ ...ementWindowsInformationProtectionAppLearningSummaryCount.md | 3 +++ ...gementWindowsInformationProtectionNetworkLearningSummary.md | 3 +++ ...tWindowsInformationProtectionNetworkLearningSummaryCount.md | 3 +++ .../Get-MgDeviceManagementWindowsMalwareInformation.md | 3 +++ .../Get-MgDeviceManagementWindowsMalwareInformationCount.md | 3 +++ ...iceManagementWindowsMalwareInformationDeviceMalwareState.md | 3 +++ ...nagementWindowsMalwareInformationDeviceMalwareStateCount.md | 3 +++ ...Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md | 3 +++ .../Invoke-MgDownDeviceManagementManagedDeviceShut.md | 3 +++ ...DeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md | 3 +++ .../Invoke-MgRetireDeviceManagementManagedDevice.md | 3 +++ ...nvoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md | 3 +++ ...eduleDeviceManagementDeviceCompliancePolicyActionForRule.md | 3 +++ .../Lock-MgDeviceManagementManagedDeviceRemote.md | 3 +++ .../New-MgAdminEdgeInternetExplorerModeSiteList.md | 3 +++ .../New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 3 +++ .../New-MgAdminEdgeInternetExplorerModeSiteListSite.md | 3 +++ .../New-MgDeviceManagementDetectedApp.md | 3 +++ .../New-MgDeviceManagementDeviceCategory.md | 3 +++ .../New-MgDeviceManagementDeviceCompliancePolicy.md | 3 +++ .../New-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 3 +++ ...anagementDeviceCompliancePolicyDeviceSettingStateSummary.md | 3 +++ ...New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 3 +++ ...ceManagementDeviceCompliancePolicyScheduledActionForRule.md | 3 +++ ...PolicyScheduledActionForRuleScheduledActionConfiguration.md | 3 +++ ...eviceManagementDeviceCompliancePolicySettingStateSummary.md | 3 +++ ...ncePolicySettingStateSummaryDeviceComplianceSettingState.md | 3 +++ .../New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 3 +++ .../New-MgDeviceManagementDeviceConfiguration.md | 3 +++ .../New-MgDeviceManagementDeviceConfigurationAssignment.md | 3 +++ ...ceManagementDeviceConfigurationDeviceSettingStateSummary.md | 3 +++ .../New-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 3 +++ .../New-MgDeviceManagementDeviceConfigurationUserStatus.md | 3 +++ .../New-MgDeviceManagementManagedDevice.md | 3 +++ ...New-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 3 +++ .../New-MgDeviceManagementManagedDeviceConfigurationState.md | 3 +++ ...ceManagementManagedDeviceLogCollectionRequestDownloadUrl.md | 3 +++ ...tManagedDeviceWindowsProtectionStateDetectedMalwareState.md | 3 +++ .../New-MgDeviceManagementMobileAppTroubleshootingEvent.md | 3 +++ ...mentMobileAppTroubleshootingEventAppLogCollectionRequest.md | 3 +++ ...ppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md | 3 +++ .../New-MgDeviceManagementNotificationMessageTemplate.md | 3 +++ ...tNotificationMessageTemplateLocalizedNotificationMessage.md | 3 +++ .../New-MgDeviceManagementTroubleshootingEvent.md | 3 +++ ...ManagementWindowsInformationProtectionAppLearningSummary.md | 3 +++ ...gementWindowsInformationProtectionNetworkLearningSummary.md | 3 +++ .../New-MgDeviceManagementWindowsMalwareInformation.md | 3 +++ ...iceManagementWindowsMalwareInformationDeviceMalwareState.md | 3 +++ .../Publish-MgAdminEdgeInternetExplorerModeSiteList.md | 3 +++ .../Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md | 3 +++ .../Remove-MgAdminEdgeInternetExplorerMode.md | 3 +++ .../Remove-MgAdminEdgeInternetExplorerModeSiteList.md | 3 +++ ...move-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 3 +++ .../Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md | 3 +++ .../Remove-MgDeviceManagementDetectedApp.md | 3 +++ .../Remove-MgDeviceManagementDeviceCategory.md | 3 +++ .../Remove-MgDeviceManagementDeviceCompliancePolicy.md | 3 +++ ...emove-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 3 +++ ...anagementDeviceCompliancePolicyDeviceSettingStateSummary.md | 3 +++ ...DeviceManagementDeviceCompliancePolicyDeviceStateSummary.md | 3 +++ ...ove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 3 +++ ...viceManagementDeviceCompliancePolicyDeviceStatusOverview.md | 3 +++ ...ceManagementDeviceCompliancePolicyScheduledActionForRule.md | 3 +++ ...PolicyScheduledActionForRuleScheduledActionConfiguration.md | 3 +++ ...eviceManagementDeviceCompliancePolicySettingStateSummary.md | 3 +++ ...ncePolicySettingStateSummaryDeviceComplianceSettingState.md | 3 +++ ...emove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 3 +++ ...DeviceManagementDeviceCompliancePolicyUserStatusOverview.md | 3 +++ .../Remove-MgDeviceManagementDeviceConfiguration.md | 3 +++ .../Remove-MgDeviceManagementDeviceConfigurationAssignment.md | 3 +++ ...ceManagementDeviceConfigurationDeviceSettingStateSummary.md | 3 +++ ...-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md | 3 +++ ...Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 3 +++ ...gDeviceManagementDeviceConfigurationDeviceStatusOverview.md | 3 +++ .../Remove-MgDeviceManagementDeviceConfigurationUserStatus.md | 3 +++ ...-MgDeviceManagementDeviceConfigurationUserStatusOverview.md | 3 +++ .../Remove-MgDeviceManagementManagedDevice.md | 3 +++ .../Remove-MgDeviceManagementManagedDeviceCategory.md | 3 +++ .../Remove-MgDeviceManagementManagedDeviceCategoryByRef.md | 3 +++ ...ove-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 3 +++ ...Remove-MgDeviceManagementManagedDeviceConfigurationState.md | 3 +++ ...move-MgDeviceManagementManagedDeviceLogCollectionRequest.md | 3 +++ ...MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md | 3 +++ ...ve-MgDeviceManagementManagedDeviceWindowsProtectionState.md | 3 +++ ...tManagedDeviceWindowsProtectionStateDetectedMalwareState.md | 3 +++ .../Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md | 3 +++ ...mentMobileAppTroubleshootingEventAppLogCollectionRequest.md | 3 +++ .../Remove-MgDeviceManagementNotificationMessageTemplate.md | 3 +++ ...tNotificationMessageTemplateLocalizedNotificationMessage.md | 3 +++ .../Remove-MgDeviceManagementTroubleshootingEvent.md | 3 +++ ...ManagementWindowsInformationProtectionAppLearningSummary.md | 3 +++ ...gementWindowsInformationProtectionNetworkLearningSummary.md | 3 +++ .../Remove-MgDeviceManagementWindowsMalwareInformation.md | 3 +++ ...iceManagementWindowsMalwareInformationDeviceMalwareState.md | 3 +++ .../Request-MgDeviceManagementManagedDeviceRemoteAssistance.md | 3 +++ .../Reset-MgDeviceManagementManagedDevicePasscode.md | 3 +++ .../Restart-MgDeviceManagementManagedDeviceNow.md | 3 +++ .../Restore-MgDeviceManagementManagedDevicePasscode.md | 3 +++ ...MgDeviceManagementNotificationMessageTemplateTestMessage.md | 3 +++ .../Set-MgDeviceManagementDeviceCompliancePolicy.md | 3 +++ .../Set-MgDeviceManagementDeviceConfiguration.md | 3 +++ .../Set-MgDeviceManagementManagedDeviceCategoryByRef.md | 3 +++ .../Skip-MgDeviceManagementManagedDeviceActivationLock.md | 3 +++ .../Sync-MgDeviceManagementManagedDevice.md | 3 +++ .../Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md | 3 +++ .../Update-MgAdminEdgeInternetExplorerMode.md | 3 +++ .../Update-MgAdminEdgeInternetExplorerModeSiteList.md | 3 +++ ...date-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 3 +++ .../Update-MgAdminEdgeInternetExplorerModeSiteListSite.md | 3 +++ .../Update-MgDeviceManagementDetectedApp.md | 3 +++ .../Update-MgDeviceManagementDeviceCategory.md | 3 +++ .../Update-MgDeviceManagementDeviceCompliancePolicy.md | 3 +++ ...pdate-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 3 +++ ...anagementDeviceCompliancePolicyDeviceSettingStateSummary.md | 3 +++ ...DeviceManagementDeviceCompliancePolicyDeviceStateSummary.md | 3 +++ ...ate-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 3 +++ ...viceManagementDeviceCompliancePolicyDeviceStatusOverview.md | 3 +++ ...ceManagementDeviceCompliancePolicyScheduledActionForRule.md | 3 +++ ...PolicyScheduledActionForRuleScheduledActionConfiguration.md | 3 +++ ...eviceManagementDeviceCompliancePolicySettingStateSummary.md | 3 +++ ...ncePolicySettingStateSummaryDeviceComplianceSettingState.md | 3 +++ ...pdate-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 3 +++ ...DeviceManagementDeviceCompliancePolicyUserStatusOverview.md | 3 +++ .../Update-MgDeviceManagementDeviceConfiguration.md | 3 +++ .../Update-MgDeviceManagementDeviceConfigurationAssignment.md | 3 +++ ...ceManagementDeviceConfigurationDeviceSettingStateSummary.md | 3 +++ ...-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md | 3 +++ ...Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 3 +++ ...gDeviceManagementDeviceConfigurationDeviceStatusOverview.md | 3 +++ .../Update-MgDeviceManagementDeviceConfigurationUserStatus.md | 3 +++ ...-MgDeviceManagementDeviceConfigurationUserStatusOverview.md | 3 +++ .../Update-MgDeviceManagementManagedDevice.md | 3 +++ .../Update-MgDeviceManagementManagedDeviceCategory.md | 3 +++ ...ate-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 3 +++ ...Update-MgDeviceManagementManagedDeviceConfigurationState.md | 3 +++ ...date-MgDeviceManagementManagedDeviceLogCollectionRequest.md | 3 +++ ...date-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md | 3 +++ ...te-MgDeviceManagementManagedDeviceWindowsProtectionState.md | 3 +++ ...tManagedDeviceWindowsProtectionStateDetectedMalwareState.md | 3 +++ .../Update-MgDeviceManagementMobileAppTroubleshootingEvent.md | 3 +++ ...mentMobileAppTroubleshootingEventAppLogCollectionRequest.md | 3 +++ .../Update-MgDeviceManagementNotificationMessageTemplate.md | 3 +++ ...tNotificationMessageTemplateLocalizedNotificationMessage.md | 3 +++ .../Update-MgDeviceManagementTroubleshootingEvent.md | 3 +++ ...ManagementWindowsInformationProtectionAppLearningSummary.md | 3 +++ ...gementWindowsInformationProtectionNetworkLearningSummary.md | 3 +++ .../Update-MgDeviceManagementWindowsMalwareInformation.md | 3 +++ ...iceManagementWindowsMalwareInformationDeviceMalwareState.md | 3 +++ 228 files changed, 684 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md index b930c6b37fdf0..3b69e1f45d20b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: Clear-MgDeviceManagementManagedDevice Wipe a device +> [!NOTE] +> To view the beta release of this cmdlet, view [Clear-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Clear-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### WipeExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md index 5ae053f681145..c792f5758547b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md @@ -15,6 +15,9 @@ title: Disable-MgDeviceManagementManagedDeviceLostMode Disable lost mode +> [!NOTE] +> To view the beta release of this cmdlet, view [Disable-MgBetaDeviceManagementManagedDeviceLostMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Disable-MgBetaDeviceManagementManagedDeviceLostMode?view=graph-powershell-beta) + ## SYNTAX ### Disable (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md index 984c98babe013..3d45e1c0b44dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: Find-MgDeviceManagementManagedDevice Locate a device +> [!NOTE] +> To view the beta release of this cmdlet, view [Find-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Find-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### Locate (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md index 2f00fc2681b3e..c2b3fb1d90632 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md @@ -16,6 +16,9 @@ title: Get-MgAdminEdge A container for Microsoft Edge resources. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdge](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdge?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md index e100b2a6b6c1d..3c1251c294289 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md @@ -15,6 +15,9 @@ title: Get-MgAdminEdgeInternetExplorerMode A container for Internet Explorer mode resources. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerMode?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md index 68edb4c47b4f3..84536257156d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md @@ -15,6 +15,9 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteList Get a browserSiteList that contains browserSite and browserSharedCookie resources. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md index bd5c81deefc4d..de1a074122240 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md @@ -15,6 +15,9 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 33e2c80a42fa7..05e9b50c6e941 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -15,6 +15,9 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md index b4ee2fb6546a8..9afacac5664b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md @@ -15,6 +15,9 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md index 98c8076f9bac7..21df87826fb9f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -15,6 +15,9 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSite Get a browserSite that resides on a browserSiteList. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md index e892ed07d9567..fa782060c17c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md @@ -15,6 +15,9 @@ title: Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md index 4a15ceea2ab86..3873ecb6c1ac3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagement Get deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagement](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagement?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md index a6cca8e5a0b54..7fff379bac4e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDetectedApp The list of detected apps associated with a device. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md index dea26add8c292..20c3683a8a78e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDetectedAppCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedAppCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedAppCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md index 5b89cbdd2a249..e7c74cb128ee8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDetectedAppManagedDevice The devices that have the discovered application installed +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedAppManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedAppManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md index 5b07cc3ab4232..932a1a8d8b0ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDetectedAppManagedDeviceCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md index 0e18029ac3a69..8d8a75e08cb99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCategory The list of device categories with the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md index af8669ceb3c91..aa7c0a0662757 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCategoryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCategoryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCategoryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md index 4f76c502392f8..9c32fee1d88f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicy The device compliance policies. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md index f6661853593a6..edb6ad9583ebe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyAssignment The collection of assignments for this compliance policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md index 04ab2c92a8b4d..babb913de5f03 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md index 7db6f75dd552b..56b9d86a972ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index efafc19ab04e1..3700b6381ae34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Compliance Setting State Device Summary +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md index 9bfb6e755489a..427bc66932048 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCoun Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 56dd181ac4374..8de2b5ba089dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary The device compliance state summary for this account. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index f6ce5f8731eb7..851c52a4b3a49 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus List of DeviceComplianceDeviceStatus. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md index bd80f4011578d..68378ed61fd7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index fa0baa1d929c3..fad5bdc37135d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Device compliance devices status overview +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 87fa9d52b1b14..e302cd710f4a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -16,6 +16,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md index 5278bee5fb3f8..ad1de747012ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index d62ae4a33f718..6f40d6af929c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -16,6 +16,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSchedul The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md index 9b128573e47bd..88a5eb97e8a8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSchedul Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 5b3cbdd7027bb..a11d8bdbf172b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary The summary states of compliance policy settings for this account. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md index b212ef1613222..5a6e57adab263 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index cee7e481eaa40..fd42ab70646ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComp Get deviceComplianceSettingStates from deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md index c077e1abecef3..eafd3d83c285e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComp Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 1c48f3be762db..8f139f0f5d69d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatus List of DeviceComplianceUserStatus. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md index 1c079d0f269bb..ee6469b832dd5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 82015a14aa5ee..59c3397030932 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Device compliance users status overview +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md index f50ac0910db72..4bbcc6cd7c288 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfiguration The device configurations. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md index 220b1f257ce88..cf9229b6108e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationAssignment The list of assignments for the device configuration profile. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md index b7f7df22da8d3..7a37ea08f475d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md index f85eab86a3177..80e69e8fad9f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 1773bbb1fc46c..b4f69fe31198a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Device Configuration Setting State Device Summary +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md index 6e2f3dcbf0d79..a9d7fb435b4e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 51d71e0bf942a..ca8fe37fc9ca7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary The device configuration device state summary for this account. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md index a250ef9c31dc9..ec3d261d31459 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStatus Device configuration installation status by device. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md index f216ad579dd0d..2444fc475950b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index f2ad5f65bf289..92e9cef8319b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Device Configuration devices status overview +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md index 36706d5b3ffe2..0097221e093c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue Invoke function getOmaSettingPlainTextValue +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md index d22cf0d59cde8..8c0295b3c09d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationUserStatus Device configuration installation status by user. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md index 99e120dc76e8a..492ae8628f54e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationUserStatusCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 11af86bd4d09e..47b74a008a6ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceConfigurationUserStatusOverview Device Configuration users status overview +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md index 56adc97713d0a..63a73ddf8e345 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDevice The list of managed devices. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md index 9079b11529406..7e55e1060a2e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceCategory Device category +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCategory?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md index d4561fecbf968..de3e116539f0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceCategoryByRef Device category +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCategoryByRef](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCategoryByRef?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 70355cac63b12..ef443cfd8051f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceCompliancePolicyState Device compliance policy states for this device. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md index c55f26e15ad83..c5a55f7af5c18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md index a1e5a955bf96a..a7609443aef08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceConfigurationState Device configuration states for this device. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md index 84a2438a1af63..f7f2ff3aacd7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceConfigurationStateCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md index fcac7b7417ded..2c2915eb5d70a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 742bac46266b7..579fc8eebcc44 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceLogCollectionRequest List of log collection requests +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md index 12170f7c7279d..c474e9838777c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md index a42b782760719..6c39bd5913c1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceOverview Device overview +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceOverview?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md index 8908ba89293dc..c35bdd4ed6ef4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceUser The primary users associated with the managed device. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceUser](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceUser?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 29876a497538e..9b67bdad81943 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -16,6 +16,9 @@ title: Get-MgDeviceManagementManagedDeviceWindowsProtectionState The device protection status. This property is read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index e36ccde1cb022..49abe50cc3dd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareS Device malware list +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md index a01aab666f87d..544c51d342679 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareS Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md index 7f95b45dbeb52..35788442b8ace 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEvent The collection property of MobileAppTroubleshootingEvent. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 1c875c9952fbe..bcdc3b21c8780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Indicates collection of App Log Upload Request. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md index 2ce5340bcddb9..b715cbd46900f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md index d7297ec9a737f..73abd6602b798 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementMobileAppTroubleshootingEventCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md index 53203ccef21bb..963a6e113200d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementNotificationMessageTemplate The Notification Message Templates. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md index eabc6d3d2874d..2e679efb56b4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementNotificationMessageTemplateCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index c936e9d4133f0..bd183a752d6db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMes The list of localized messages for this Notification Message Template. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md index 72c61c302cd67..5ec7fee446bf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMes Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md index 7366446e0a8a5..cb4f52be29908 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementSoftwareUpdateStatusSummary The software update status summary. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md index 5c621b33c47c4..3e29a76ff87c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTroubleshootingEvent The list of troubleshooting events for the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md index 5acc78cf8ab4e..c7a48d1dc1416 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTroubleshootingEventCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTroubleshootingEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementTroubleshootingEventCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index cd8ad93a98df8..c781cf1de7842 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary The windows information protection app learning summaries. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md index acca9e7f9b492..611e5b3b93424 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 387e7b6081c12..282941b383398 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary The windows information protection network learning summaries. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md index 6f10fe36694ff..9a7a2e39a4e48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryC Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md index 2d87d42fc7514..301ad52f84230 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsMalwareInformation The list of affected malware in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md index 1a15b522cc938..01f120cb9b89e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsMalwareInformationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 808bc472237b2..91cf77eed6bcb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState List of devices affected by current malware with the malware state on each device +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md index bbdee0b68b09f..a7082fa4c4171 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md index 252d926cb9d6a..aac5815991604 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md @@ -15,6 +15,9 @@ title: Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice Clean Windows device +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaCleanDeviceManagementManagedDeviceWindowsDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaCleanDeviceManagementManagedDeviceWindowsDevice?view=graph-powershell-beta) + ## SYNTAX ### CleanExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md index 9da88156e299f..141c8e625d901 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md @@ -15,6 +15,9 @@ title: Invoke-MgDownDeviceManagementManagedDeviceShut Shut down device +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDownDeviceManagementManagedDeviceShut](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaDownDeviceManagementManagedDeviceShut?view=graph-powershell-beta) + ## SYNTAX ### Down (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md index 89573605cc499..8b1f4463e7da0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md @@ -15,6 +15,9 @@ title: Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser Logout shared Apple device active user +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser?view=graph-powershell-beta) + ## SYNTAX ### Logout (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md index 652e2fb292189..b39371883c5c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: Invoke-MgRetireDeviceManagementManagedDevice Retire a device +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaRetireDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaRetireDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### Retire (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md index 7db3e46ae094e..12cb71e898884 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md @@ -15,6 +15,9 @@ title: Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender Invoke action windowsDefenderScan +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaScanDeviceManagementManagedDeviceWindowsDefender](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaScanDeviceManagementManagedDeviceWindowsDefender?view=graph-powershell-beta) + ## SYNTAX ### ScanExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md index bfcd07f121c03..34b5eafc349ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md @@ -15,6 +15,9 @@ title: Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule Invoke action scheduleActionsForRules +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaScheduleDeviceManagementDeviceCompliancePolicyActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Invoke-MgBetaScheduleDeviceManagementDeviceCompliancePolicyActionForRule?view=graph-powershell-beta) + ## SYNTAX ### ScheduleExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md index c55d0b5a509f7..e8091208f1c09 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md @@ -15,6 +15,9 @@ title: Lock-MgDeviceManagementManagedDeviceRemote Remote lock +> [!NOTE] +> To view the beta release of this cmdlet, view [Lock-MgBetaDeviceManagementManagedDeviceRemote](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Lock-MgBetaDeviceManagementManagedDeviceRemote?view=graph-powershell-beta) + ## SYNTAX ### Lock (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md index 169927071f373..ac92497cd37ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md @@ -15,6 +15,9 @@ title: New-MgAdminEdgeInternetExplorerModeSiteList Create a new browserSiteList object to support Internet Explorer mode. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 267ff78b8281f..e64e15b2930f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -15,6 +15,9 @@ title: New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Create a new browserSharedCookie object in a browserSiteList. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md index 741eb22e5a639..0cfc52ffe2365 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -15,6 +15,9 @@ title: New-MgAdminEdgeInternetExplorerModeSiteListSite Create a new browserSite object in a browserSiteList. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md index 1bbf9cda986e5..67a512146bf63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDetectedApp Create new navigation property to detectedApps for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md index bdf774bd05673..27b83a9022780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCategory Create new navigation property to deviceCategories for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md index a3d460035a36d..bd24f99038fa6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicy Create new navigation property to deviceCompliancePolicies for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md index cbf0f3638ac78..e1a4470bfbe73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicyAssignment Create new navigation property to assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 6cda904343ba5..afaae6e03d290 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Create new navigation property to deviceSettingStateSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 8fa5d28f618a5..fda0293bcc88d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Create new navigation property to deviceStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 194a8407aa485..f7a97a0cdab41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Create new navigation property to scheduledActionsForRule for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index f4febd358934c..6932b522dcf10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSchedul Create new navigation property to scheduledActionConfigurations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 0c591420dd49a..101aa31e8706a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 16b04cbd9ebfa..6a929baed7f07 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComp Create new navigation property to deviceComplianceSettingStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index cc3c0f8f99b75..d9ce80bc1a252 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceCompliancePolicyUserStatus Create new navigation property to userStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md index 4bb3f01ee4a25..12d3091c2a8ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceConfiguration Create new navigation property to deviceConfigurations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md index b349db195ccbe..250354ef2610f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceConfigurationAssignment Create new navigation property to assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index c764eeca289e2..36562a8e475d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Create new navigation property to deviceSettingStateSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 3284fff9b42d3..8df1a65e430ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceConfigurationDeviceStatus Create new navigation property to deviceStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md index 4fea291aaf38f..a8c3599880275 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceConfigurationUserStatus Create new navigation property to userStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md index e8bd07ea50b0d..2a92bf7daa82f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementManagedDevice Create new navigation property to managedDevices for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md index b009edea33934..db0d68ea951b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementManagedDeviceCompliancePolicyState Create new navigation property to deviceCompliancePolicyStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md index 8c55a86f8ff33..b87a94ca8e818 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementManagedDeviceConfigurationState Create new navigation property to deviceConfigurationStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md index 19ec811123c8a..6552a653b8fd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl Invoke action createDownloadUrl +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl?view=graph-powershell-beta) + ## SYNTAX ### Create (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index fd15723f44bd6..47b0b3e67077a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareS Create new navigation property to detectedMalwareState for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md index adfb20540e615..b691885234675 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementMobileAppTroubleshootingEvent Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index fbf4b506d36be..648ae4e3bc098 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Create new navigation property to appLogCollectionRequests for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md index 7e5dc15fe607d..2ac1076ee042d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReques Invoke action createDownloadUrl +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl?view=graph-powershell-beta) + ## SYNTAX ### Create (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md index fa85034b60b99..fb966f8c5c111 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementNotificationMessageTemplate Create new navigation property to notificationMessageTemplates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 0db8f0889a096..1fa6d5b5f9719 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMes Create new navigation property to localizedNotificationMessages for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md index 1c16b01f6e1bf..339c2392e5469 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementTroubleshootingEvent Create new navigation property to troubleshootingEvents for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 2fea5ca1971b6..5eeefa8e6f3ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index b5a889b250f83..482fc9e988f9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md index 0db87ca194eba..8c29a1dcad52b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementWindowsMalwareInformation Create new navigation property to windowsMalwareInformation for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index f15aa4e3fe85c..36fb1067264de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Create new navigation property to deviceMalwareStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/New-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md index 5095cd4cff084..3dc2c98d9990b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md @@ -15,6 +15,9 @@ title: Publish-MgAdminEdgeInternetExplorerModeSiteList Publish the specified browserSiteList for devices to download. +> [!NOTE] +> To view the beta release of this cmdlet, view [Publish-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Publish-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) + ## SYNTAX ### PublishExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md index c907512ba0c98..ccec8b64cb062 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md @@ -15,6 +15,9 @@ title: Remove-MgAdminEdge Delete navigation property edge for admin +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdge](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdge?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md index 2eeea2294e252..8b9ce604c12ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md @@ -15,6 +15,9 @@ title: Remove-MgAdminEdgeInternetExplorerMode Delete navigation property internetExplorerMode for admin +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerMode?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md index a9312af3b7508..be9f23ab42667 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md @@ -15,6 +15,9 @@ title: Remove-MgAdminEdgeInternetExplorerModeSiteList Delete a browserSiteList object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index f9b5a2949e400..7b7aebfe10ecd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -15,6 +15,9 @@ title: Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Delete a browserSharedCookie from a browserSiteList. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md index 24c3edd8c827a..cfb8811ada988 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -15,6 +15,9 @@ title: Remove-MgAdminEdgeInternetExplorerModeSiteListSite Delete a browserSite from a browserSiteList. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md index 136f340c3599e..2ab93bb966a6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDetectedApp Delete navigation property detectedApps for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md index f7c509f2b91df..306a20b566660 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCategory Delete navigation property deviceCategories for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md index 1442c821dd199..1999b9f4e0f5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicy Delete navigation property deviceCompliancePolicies for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md index b4b973cc7548e..656dbd0ec1928 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyAssignment Delete navigation property assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 0ed81fecc72d9..0bc641b215da1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Delete navigation property deviceSettingStateSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 07c020d587480..0aca86645c39b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Delete navigation property deviceCompliancePolicyDeviceStateSummary for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index da2c7c5840eda..abf5149156f03 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Delete navigation property deviceStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index ff1cc34f24e46..55872c6a433cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Delete navigation property deviceStatusOverview for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 0abdc43ec1c28..7fd784c11fe4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Delete navigation property scheduledActionsForRule for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 9065f293e7d6d..a14087ed902c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSche Delete navigation property scheduledActionConfigurations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 0fad16a170912..5723f2a7eeb75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 09bab29986cde..15fdfe91e29cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceC Delete navigation property deviceComplianceSettingStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index ef808f7acc810..75c6248f3ff01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus Delete navigation property userStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 160e6824e1a57..807494e5bd84f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Delete navigation property userStatusOverview for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md index fe891fb076b20..e099293246da4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfiguration Delete navigation property deviceConfigurations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md index 676c0e0ef3ac0..32ed0cd5abc35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfigurationAssignment Delete navigation property assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index de65f97c521de..9dd73c384180b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Delete navigation property deviceSettingStateSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 7ed3fcc01d55c..7440bed64291d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary Delete navigation property deviceConfigurationDeviceStateSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md index fd25e1d79ad7c..c3f010de06c85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceStatus Delete navigation property deviceStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index c62134d8e3674..531bdb9a1049d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Delete navigation property deviceStatusOverview for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md index f3973f36bf0cd..e44e878aa82f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfigurationUserStatus Delete navigation property userStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index cba0819b7f343..7e96f024d66f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview Delete navigation property userStatusOverview for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md index 022e82ad29d86..c4f034d9a3a17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDevice Delete navigation property managedDevices for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md index c0ca1ca1b120b..167fcd7fc3a14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceCategory Delete navigation property deviceCategory for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceCategory?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md index fad690cfd11fc..e8a594ff1db0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceCategoryByRef Delete ref of navigation property deviceCategory for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceCategoryByRef](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceCategoryByRef?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 7cea43b4c5367..cfdf11657db2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceCompliancePolicyState Delete navigation property deviceCompliancePolicyStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md index 41b6cda8c669e..eb57fe6e8b73c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceConfigurationState Delete navigation property deviceConfigurationStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md index d6a1992dfaa83..87fb46a120fa0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceLogCollectionRequest Delete navigation property logCollectionRequests for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceLogCollectionRequest?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md index 50d6738b98e8a..8d35626b2593a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice Delete user from shared Apple device +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceUserFromSharedAppleDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceUserFromSharedAppleDevice?view=graph-powershell-beta) + ## SYNTAX ### DeleteExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 569f44cb32b2b..ebf596c5497ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceWindowsProtectionState Delete navigation property windowsProtectionState for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionState?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 4cfabac265ba1..3b2ca85c41bfe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwa Delete navigation property detectedMalwareState for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md index 2aedfeb2da32f..1930c61eaeec7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementMobileAppTroubleshootingEvent Delete navigation property mobileAppTroubleshootingEvents for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 6ed528c132a4d..24be85488f115 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReq Delete navigation property appLogCollectionRequests for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md index 559756deb8215..f8829fb317b3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementNotificationMessageTemplate Delete navigation property notificationMessageTemplates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 11472dcaab886..078cf2b5affd0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotification Delete navigation property localizedNotificationMessages for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md index e7d6e4ca1d846..31814bc2c69e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementTroubleshootingEvent Delete navigation property troubleshootingEvents for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 696528c12ff00..ba58e32009397 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 12c618350662e..9be44ae4a5562 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSumma Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md index f0ba5df2eeab1..d2030da766cc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementWindowsMalwareInformation Delete navigation property windowsMalwareInformation for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 58f29b8efbdb8..5c2ef9913dc75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Delete navigation property deviceMalwareStates for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Remove-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md index 499ac260fa9a9..f069abcac6ee3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md @@ -15,6 +15,9 @@ title: Request-MgDeviceManagementManagedDeviceRemoteAssistance Request remote assistance +> [!NOTE] +> To view the beta release of this cmdlet, view [Request-MgBetaDeviceManagementManagedDeviceRemoteAssistance](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Request-MgBetaDeviceManagementManagedDeviceRemoteAssistance?view=graph-powershell-beta) + ## SYNTAX ### Request (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md index cd243cd4dc389..4e257243592be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md @@ -15,6 +15,9 @@ title: Reset-MgDeviceManagementManagedDevicePasscode Reset passcode +> [!NOTE] +> To view the beta release of this cmdlet, view [Reset-MgBetaDeviceManagementManagedDevicePasscode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Reset-MgBetaDeviceManagementManagedDevicePasscode?view=graph-powershell-beta) + ## SYNTAX ### Reset (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md index 2d31e23f5b5c2..3cd97ddec806d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md @@ -15,6 +15,9 @@ title: Restart-MgDeviceManagementManagedDeviceNow Reboot device +> [!NOTE] +> To view the beta release of this cmdlet, view [Restart-MgBetaDeviceManagementManagedDeviceNow](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Restart-MgBetaDeviceManagementManagedDeviceNow?view=graph-powershell-beta) + ## SYNTAX ### Reboot (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md index 18c767d25d642..5e100f514d74f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md @@ -15,6 +15,9 @@ title: Restore-MgDeviceManagementManagedDevicePasscode Recover passcode +> [!NOTE] +> To view the beta release of this cmdlet, view [Restore-MgBetaDeviceManagementManagedDevicePasscode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Restore-MgBetaDeviceManagementManagedDevicePasscode?view=graph-powershell-beta) + ## SYNTAX ### Recover (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md index 602ee9cf786f6..1922867fb9e79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md @@ -15,6 +15,9 @@ title: Send-MgDeviceManagementNotificationMessageTemplateTestMessage Sends test message using the specified notificationMessageTemplate in the default locale +> [!NOTE] +> To view the beta release of this cmdlet, view [Send-MgBetaDeviceManagementNotificationMessageTemplateTestMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Send-MgBetaDeviceManagementNotificationMessageTemplateTestMessage?view=graph-powershell-beta) + ## SYNTAX ### Send (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md index 528998fd91f68..d58625307de59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md @@ -15,6 +15,9 @@ title: Set-MgDeviceManagementDeviceCompliancePolicy Invoke action assign +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Set-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) + ## SYNTAX ### AssignExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md index dfac24b1469c8..3470b531f2ccc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md @@ -15,6 +15,9 @@ title: Set-MgDeviceManagementDeviceConfiguration Invoke action assign +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Set-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) + ## SYNTAX ### AssignExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md index 98f1ee384738f..343335717e11d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -15,6 +15,9 @@ title: Set-MgDeviceManagementManagedDeviceCategoryByRef Update the ref of navigation property deviceCategory in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementManagedDeviceCategoryByRef](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Set-MgBetaDeviceManagementManagedDeviceCategoryByRef?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md index 0c650002ecaa4..2fe686679d0a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md @@ -15,6 +15,9 @@ title: Skip-MgDeviceManagementManagedDeviceActivationLock Bypass activation lock +> [!NOTE] +> To view the beta release of this cmdlet, view [Skip-MgBetaDeviceManagementManagedDeviceActivationLock](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Skip-MgBetaDeviceManagementManagedDeviceActivationLock?view=graph-powershell-beta) + ## SYNTAX ### Bypass (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md index a8e3ba8e486b0..bc7650f1a33ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: Sync-MgDeviceManagementManagedDevice Invoke action syncDevice +> [!NOTE] +> To view the beta release of this cmdlet, view [Sync-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Sync-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### Sync (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md index 0c9e6486c4162..f1bf057670cd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md @@ -15,6 +15,9 @@ title: Update-MgAdminEdge Update the navigation property edge in admin +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdge](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdge?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md index 155917d5c0b65..a927609124a1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md @@ -15,6 +15,9 @@ title: Update-MgAdminEdgeInternetExplorerMode Update the navigation property internetExplorerMode in admin +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerMode](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerMode?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md index 268aecd2ab057..173edfdc17523 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md @@ -15,6 +15,9 @@ title: Update-MgAdminEdgeInternetExplorerModeSiteList Update the properties of a browserSiteList object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerModeSiteList](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerModeSiteList?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 07e12dc345b4a..b7dae173091f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -15,6 +15,9 @@ title: Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Update the properties of a browserSharedCookie object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md index 9674d7b8968a0..77d4357ed8b4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -15,6 +15,9 @@ title: Update-MgAdminEdgeInternetExplorerModeSiteListSite Update the properties of a browserSite object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaAdminEdgeInternetExplorerModeSiteListSite](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaAdminEdgeInternetExplorerModeSiteListSite?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md index c9201950836f6..d2bf32c17e16d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDetectedApp Update the navigation property detectedApps in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDetectedApp](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDetectedApp?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md index de3031dde0666..63def68f83cf8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCategory Update the navigation property deviceCategories in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCategory?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md index 78da51652e6c9..9cdd40f0722a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicy Update the navigation property deviceCompliancePolicies in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicy?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 4c0e3049f961f..1c2cb2ef4a86a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyAssignment Update the navigation property assignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 61f053aea6827..8074040f6a09f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary Update the navigation property deviceSettingStateSummaries in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 563a51c2fb4d0..098ced5b3768e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 5602d6317d0cc..3d7a68ac56685 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Update the navigation property deviceStatuses in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index ae03aaa0cf318..1101b53edef52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Update the navigation property deviceStatusOverview in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 242656d03dcc3..0824ec1df21bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Update the navigation property scheduledActionsForRule in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 79fb04b64a3ea..8ad2977835fec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleSche Update the navigation property scheduledActionConfigurations in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 1fc1eace15e5b..a9ff371b4124d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 3efd3f897edd8..58011a78b5302 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceC Update the navigation property deviceComplianceSettingStates in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 95ee4ba016458..5809b1d5e1957 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyUserStatus Update the navigation property userStatuses in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index fbaaef00ab4ca..a55b731f52319 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Update the navigation property userStatusOverview in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md index bdedf79bb88fc..44da444b72b34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfiguration Update the navigation property deviceConfigurations in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfiguration?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md index 91d1106517085..7215dd799c3fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfigurationAssignment Update the navigation property assignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index e702fdd1e7db9..23658eea2f0c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Update the navigation property deviceSettingStateSummaries in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index f05d656599ef4..f8627d8bec3ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 969fa4985e94c..573dc310b8656 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceStatus Update the navigation property deviceStatuses in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatus?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 2b39e1db5bdd4..984b5c62bd050 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Update the navigation property deviceStatusOverview in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md index c6f63d13a53e6..30e2c35e2924b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfigurationUserStatus Update the navigation property userStatuses in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationUserStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationUserStatus?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index cbf1665c58c9b..d65991b834296 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceConfigurationUserStatusOverview Update the navigation property userStatusOverview in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md index 79f6e3b8898e4..9d0de83c9937c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDevice Update the navigation property managedDevices in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDevice?view=graph-powershell-beta) + ## SYNTAX ### Update1 (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md index 57de885188af5..a5b87630a8e71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDeviceCategory Update the navigation property deviceCategory in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceCategory](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceCategory?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md index e717ea91c4e81..56a067e323402 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDeviceCompliancePolicyState Update the navigation property deviceCompliancePolicyStates in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceCompliancePolicyState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceCompliancePolicyState?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md index c3dc28413e601..a20b4531ffde3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDeviceConfigurationState Update the navigation property deviceConfigurationStates in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceConfigurationState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceConfigurationState?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md index d35759e294b6f..940d218a55238 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDeviceLogCollectionRequest Update the navigation property logCollectionRequests in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceLogCollectionRequest?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md index 15c0943acf1a2..d5bbf9782c09b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount Invoke action updateWindowsDeviceAccount +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceWindowsDeviceAccount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceWindowsDeviceAccount?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 64f844f88f2b1..ce2d495540cb1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDeviceWindowsProtectionState Update the navigation property windowsProtectionState in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionState?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index f30a21e1e690b..61638d080a38f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwa Update the navigation property detectedMalwareState in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md index 15d392524ba10..8616ea123d4fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementMobileAppTroubleshootingEvent Update the navigation property mobileAppTroubleshootingEvents in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementMobileAppTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementMobileAppTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 09d5d8bca8e8b..c57c2e9c88e4a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionReq Update the navigation property appLogCollectionRequests in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md index 15ff9f043d849..7fa30c1c7c168 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementNotificationMessageTemplate Update the navigation property notificationMessageTemplates in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementNotificationMessageTemplate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementNotificationMessageTemplate?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 63d0cbcef6d5f..7f8a9e6ed116e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotification Update the navigation property localizedNotificationMessages in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md index 850ff34b00c98..12ed4186fe4bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementTroubleshootingEvent Update the navigation property troubleshootingEvents in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTroubleshootingEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementTroubleshootingEvent?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 0011e5c5a08e3..27de889fcc8c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 9ede21a206c10..07ac1f1251570 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSumma Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md index d522ae33e8c70..47015362dda6e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementWindowsMalwareInformation Update the navigation property windowsMalwareInformation in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsMalwareInformation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsMalwareInformation?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index eca9235348977..57500502dba16 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Update the navigation property deviceMalwareStates in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState](/powershell/module/Microsoft.Graph.Beta.DeviceManagement/Update-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From 430f0c9933ff856df35ad4b2ea7f181068f290ee Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:26 +0000 Subject: [PATCH 14/17] Repaired examples and descriptions --- .../Clear-MgDeviceManagementManagedDevice.md | 7 ++++++- ...able-MgDeviceManagementManagedDeviceLostMode.md | 7 ++++++- .../Find-MgDeviceManagementManagedDevice.md | 7 ++++++- .../Get-MgAdminEdgeInternetExplorerModeSiteList.md | 7 ++++++- ...EdgeInternetExplorerModeSiteListSharedCookie.md | 7 ++++++- ...-MgAdminEdgeInternetExplorerModeSiteListSite.md | 7 ++++++- .../Get-MgDeviceManagement.md | 7 ++++++- .../Get-MgDeviceManagementDetectedApp.md | 7 ++++++- ...t-MgDeviceManagementDetectedAppManagedDevice.md | 12 ++---------- .../Get-MgDeviceManagementDeviceCategory.md | 7 ++++++- ...Get-MgDeviceManagementDeviceCompliancePolicy.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyAssignment.md | 7 ++++++- ...iceCompliancePolicyDeviceSettingStateSummary.md | 12 ++---------- ...mentDeviceCompliancePolicyDeviceStateSummary.md | 7 ++++++- ...ManagementDeviceCompliancePolicyDeviceStatus.md | 7 ++++++- ...ntDeviceCompliancePolicyDeviceStatusOverview.md | 7 ++++++- ...DeviceCompliancePolicyScheduledActionForRule.md | 7 ++++++- ...ledActionForRuleScheduledActionConfiguration.md | 7 ++++++- ...entDeviceCompliancePolicySettingStateSummary.md | 7 ++++++- ...tingStateSummaryDeviceComplianceSettingState.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyUserStatus.md | 7 ++++++- ...mentDeviceCompliancePolicyUserStatusOverview.md | 7 ++++++- .../Get-MgDeviceManagementDeviceConfiguration.md | 7 ++++++- ...eviceManagementDeviceConfigurationAssignment.md | 7 ++++++- ...DeviceConfigurationDeviceSettingStateSummary.md | 7 ++++++- ...agementDeviceConfigurationDeviceStateSummary.md | 7 ++++++- ...iceManagementDeviceConfigurationDeviceStatus.md | 7 ++++++- ...ementDeviceConfigurationDeviceStatusOverview.md | 7 ++++++- ...eviceManagementDeviceConfigurationUserStatus.md | 7 ++++++- ...agementDeviceConfigurationUserStatusOverview.md | 7 ++++++- .../Get-MgDeviceManagementManagedDevice.md | 12 ++---------- .../Get-MgDeviceManagementManagedDeviceCategory.md | 11 +---------- ...ManagementManagedDeviceCompliancePolicyState.md | 12 ++---------- ...iceManagementManagedDeviceConfigurationState.md | 12 ++---------- .../Get-MgDeviceManagementManagedDeviceOverview.md | 11 +---------- .../Get-MgDeviceManagementManagedDeviceUser.md | 11 +---------- ...eviceManagementMobileAppTroubleshootingEvent.md | 7 ++++++- ...pTroubleshootingEventAppLogCollectionRequest.md | 7 ++++++- ...gDeviceManagementNotificationMessageTemplate.md | 7 ++++++- ...nMessageTemplateLocalizedNotificationMessage.md | 7 ++++++- ...gDeviceManagementSoftwareUpdateStatusSummary.md | 7 ++++++- .../Get-MgDeviceManagementTroubleshootingEvent.md | 12 ++---------- ...ndowsInformationProtectionAppLearningSummary.md | 7 ++++++- ...sInformationProtectionNetworkLearningSummary.md | 7 ++++++- ...-MgDeviceManagementWindowsMalwareInformation.md | 7 ++++++- ...tWindowsMalwareInformationDeviceMalwareState.md | 7 ++++++- ...anDeviceManagementManagedDeviceWindowsDevice.md | 7 ++++++- ...voke-MgDownDeviceManagementManagedDeviceShut.md | 7 ++++++- ...mentManagedDeviceSharedAppleDeviceActiveUser.md | 7 ++++++- ...Invoke-MgRetireDeviceManagementManagedDevice.md | 7 ++++++- ...DeviceManagementManagedDeviceWindowsDefender.md | 7 ++++++- ...anagementDeviceCompliancePolicyActionForRule.md | 7 ++++++- .../Lock-MgDeviceManagementManagedDeviceRemote.md | 7 ++++++- .../New-MgAdminEdgeInternetExplorerModeSiteList.md | 7 ++++++- ...EdgeInternetExplorerModeSiteListSharedCookie.md | 7 ++++++- ...-MgAdminEdgeInternetExplorerModeSiteListSite.md | 7 ++++++- .../New-MgDeviceManagementDetectedApp.md | 7 ++++++- .../New-MgDeviceManagementDeviceCategory.md | 7 ++++++- ...New-MgDeviceManagementDeviceCompliancePolicy.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyAssignment.md | 7 ++++++- ...iceCompliancePolicyDeviceSettingStateSummary.md | 11 +---------- ...ManagementDeviceCompliancePolicyDeviceStatus.md | 7 ++++++- ...DeviceCompliancePolicyScheduledActionForRule.md | 7 ++++++- ...ledActionForRuleScheduledActionConfiguration.md | 7 ++++++- ...entDeviceCompliancePolicySettingStateSummary.md | 7 ++++++- ...tingStateSummaryDeviceComplianceSettingState.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyUserStatus.md | 7 ++++++- .../New-MgDeviceManagementDeviceConfiguration.md | 7 ++++++- ...eviceManagementDeviceConfigurationAssignment.md | 7 ++++++- ...DeviceConfigurationDeviceSettingStateSummary.md | 7 ++++++- ...iceManagementDeviceConfigurationDeviceStatus.md | 7 ++++++- ...eviceManagementDeviceConfigurationUserStatus.md | 7 ++++++- .../New-MgDeviceManagementManagedDevice.md | 7 ++++++- ...ManagementManagedDeviceCompliancePolicyState.md | 11 +---------- ...iceManagementManagedDeviceConfigurationState.md | 11 +---------- ...eviceManagementMobileAppTroubleshootingEvent.md | 7 ++++++- ...pTroubleshootingEventAppLogCollectionRequest.md | 7 ++++++- ...otingEventAppLogCollectionRequestDownloadUrl.md | 7 ++++++- ...gDeviceManagementNotificationMessageTemplate.md | 7 ++++++- ...nMessageTemplateLocalizedNotificationMessage.md | 7 ++++++- .../New-MgDeviceManagementTroubleshootingEvent.md | 11 +---------- ...ndowsInformationProtectionAppLearningSummary.md | 7 ++++++- ...sInformationProtectionNetworkLearningSummary.md | 7 ++++++- ...-MgDeviceManagementWindowsMalwareInformation.md | 7 ++++++- ...tWindowsMalwareInformationDeviceMalwareState.md | 7 ++++++- ...move-MgAdminEdgeInternetExplorerModeSiteList.md | 7 ++++++- ...EdgeInternetExplorerModeSiteListSharedCookie.md | 14 ++++++++++++-- ...-MgAdminEdgeInternetExplorerModeSiteListSite.md | 14 ++++++++++++-- .../Remove-MgDeviceManagementDetectedApp.md | 7 ++++++- .../Remove-MgDeviceManagementDeviceCategory.md | 7 ++++++- ...ove-MgDeviceManagementDeviceCompliancePolicy.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyAssignment.md | 7 ++++++- ...iceCompliancePolicyDeviceSettingStateSummary.md | 11 +---------- ...mentDeviceCompliancePolicyDeviceStateSummary.md | 11 +---------- ...ManagementDeviceCompliancePolicyDeviceStatus.md | 7 ++++++- ...ntDeviceCompliancePolicyDeviceStatusOverview.md | 11 +---------- ...DeviceCompliancePolicyScheduledActionForRule.md | 7 ++++++- ...ledActionForRuleScheduledActionConfiguration.md | 7 ++++++- ...entDeviceCompliancePolicySettingStateSummary.md | 7 ++++++- ...tingStateSummaryDeviceComplianceSettingState.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyUserStatus.md | 7 ++++++- ...mentDeviceCompliancePolicyUserStatusOverview.md | 11 +---------- ...Remove-MgDeviceManagementDeviceConfiguration.md | 7 ++++++- ...eviceManagementDeviceConfigurationAssignment.md | 7 ++++++- ...DeviceConfigurationDeviceSettingStateSummary.md | 7 ++++++- ...agementDeviceConfigurationDeviceStateSummary.md | 11 +---------- ...iceManagementDeviceConfigurationDeviceStatus.md | 7 ++++++- ...ementDeviceConfigurationDeviceStatusOverview.md | 11 +---------- ...eviceManagementDeviceConfigurationUserStatus.md | 7 ++++++- ...agementDeviceConfigurationUserStatusOverview.md | 11 +---------- .../Remove-MgDeviceManagementManagedDevice.md | 7 ++++++- ...move-MgDeviceManagementManagedDeviceCategory.md | 11 +---------- ...ManagementManagedDeviceCompliancePolicyState.md | 11 +---------- ...iceManagementManagedDeviceConfigurationState.md | 11 +---------- ...gementManagedDeviceUserFromSharedAppleDevice.md | 7 ++++++- ...eviceManagementMobileAppTroubleshootingEvent.md | 7 ++++++- ...pTroubleshootingEventAppLogCollectionRequest.md | 7 ++++++- ...gDeviceManagementNotificationMessageTemplate.md | 7 ++++++- ...nMessageTemplateLocalizedNotificationMessage.md | 7 ++++++- ...emove-MgDeviceManagementTroubleshootingEvent.md | 11 +---------- ...ndowsInformationProtectionAppLearningSummary.md | 7 ++++++- ...sInformationProtectionNetworkLearningSummary.md | 7 ++++++- ...-MgDeviceManagementWindowsMalwareInformation.md | 7 ++++++- ...tWindowsMalwareInformationDeviceMalwareState.md | 7 ++++++- ...eviceManagementManagedDeviceRemoteAssistance.md | 7 ++++++- ...eset-MgDeviceManagementManagedDevicePasscode.md | 7 ++++++- .../Restart-MgDeviceManagementManagedDeviceNow.md | 7 ++++++- ...tore-MgDeviceManagementManagedDevicePasscode.md | 7 ++++++- ...gementNotificationMessageTemplateTestMessage.md | 7 ++++++- ...Set-MgDeviceManagementDeviceCompliancePolicy.md | 7 ++++++- .../Set-MgDeviceManagementDeviceConfiguration.md | 7 ++++++- ...gDeviceManagementManagedDeviceActivationLock.md | 7 ++++++- .../Sync-MgDeviceManagementManagedDevice.md | 7 ++++++- ...date-MgAdminEdgeInternetExplorerModeSiteList.md | 7 ++++++- ...EdgeInternetExplorerModeSiteListSharedCookie.md | 7 ++++++- ...-MgAdminEdgeInternetExplorerModeSiteListSite.md | 7 ++++++- .../Update-MgDeviceManagement.md | 7 ++++++- .../Update-MgDeviceManagementDetectedApp.md | 7 ++++++- .../Update-MgDeviceManagementDeviceCategory.md | 7 ++++++- ...ate-MgDeviceManagementDeviceCompliancePolicy.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyAssignment.md | 7 ++++++- ...iceCompliancePolicyDeviceSettingStateSummary.md | 11 +---------- ...mentDeviceCompliancePolicyDeviceStateSummary.md | 7 ++++++- ...ManagementDeviceCompliancePolicyDeviceStatus.md | 7 ++++++- ...ntDeviceCompliancePolicyDeviceStatusOverview.md | 7 ++++++- ...DeviceCompliancePolicyScheduledActionForRule.md | 7 ++++++- ...ledActionForRuleScheduledActionConfiguration.md | 7 ++++++- ...entDeviceCompliancePolicySettingStateSummary.md | 7 ++++++- ...tingStateSummaryDeviceComplianceSettingState.md | 7 ++++++- ...ceManagementDeviceCompliancePolicyUserStatus.md | 7 ++++++- ...mentDeviceCompliancePolicyUserStatusOverview.md | 7 ++++++- ...Update-MgDeviceManagementDeviceConfiguration.md | 7 ++++++- ...eviceManagementDeviceConfigurationAssignment.md | 7 ++++++- ...DeviceConfigurationDeviceSettingStateSummary.md | 7 ++++++- ...agementDeviceConfigurationDeviceStateSummary.md | 7 ++++++- ...iceManagementDeviceConfigurationDeviceStatus.md | 7 ++++++- ...ementDeviceConfigurationDeviceStatusOverview.md | 7 ++++++- ...eviceManagementDeviceConfigurationUserStatus.md | 7 ++++++- ...agementDeviceConfigurationUserStatusOverview.md | 7 ++++++- .../Update-MgDeviceManagementManagedDevice.md | 11 +---------- ...date-MgDeviceManagementManagedDeviceCategory.md | 11 +---------- ...ManagementManagedDeviceCompliancePolicyState.md | 11 +---------- ...iceManagementManagedDeviceConfigurationState.md | 11 +---------- ...eManagementManagedDeviceWindowsDeviceAccount.md | 7 ++++++- ...eviceManagementMobileAppTroubleshootingEvent.md | 7 ++++++- ...pTroubleshootingEventAppLogCollectionRequest.md | 7 ++++++- ...gDeviceManagementNotificationMessageTemplate.md | 7 ++++++- ...nMessageTemplateLocalizedNotificationMessage.md | 7 ++++++- ...pdate-MgDeviceManagementTroubleshootingEvent.md | 11 +---------- ...ndowsInformationProtectionAppLearningSummary.md | 7 ++++++- ...sInformationProtectionNetworkLearningSummary.md | 7 ++++++- ...-MgDeviceManagementWindowsMalwareInformation.md | 7 ++++++- ...tWindowsMalwareInformationDeviceMalwareState.md | 7 ++++++- 173 files changed, 906 insertions(+), 445 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md index 3b69e1f45d20b..e7d8a27c4229b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md @@ -79,8 +79,9 @@ Wipe a device | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -93,6 +94,10 @@ $params = @{ Clear-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId -BodyParameter $params +``` +This example shows how to use the Clear-MgDeviceManagementManagedDevice Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md index c792f5758547b..1ee6b3bf2d8d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md @@ -56,13 +56,18 @@ Disable lost mode | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Disable-MgDeviceManagementManagedDeviceLostMode -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Disable-MgDeviceManagementManagedDeviceLostMode Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md index 3d45e1c0b44dc..83f8e0334a558 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md @@ -56,13 +56,18 @@ Locate a device | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Find-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Find-MgDeviceManagementManagedDevice Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md index 84536257156d0..6e9291e9bd867 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md @@ -68,13 +68,18 @@ Get a browserSiteList that contains browserSite and browserSharedCookie resource | Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgAdminEdgeInternetExplorerModeSiteList +``` +This example shows how to use the Get-MgAdminEdgeInternetExplorerModeSiteList Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 05e9b50c6e941..eca09702c3c82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -69,13 +69,18 @@ Get a session cookie that can be shared between a Microsoft Edge process and an | Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId +``` +This example shows how to use the Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md index 21df87826fb9f..1e151cafe12ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -69,13 +69,18 @@ Get a browserSite that resides on a browserSiteList. | Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId +``` +This example shows how to use the Get-MgAdminEdgeInternetExplorerModeSiteListSite Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md index 3873ecb6c1ac3..c23df22e36892 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md @@ -47,13 +47,18 @@ Get deviceManagement | Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagement +``` +This example shows how to use the Get-MgDeviceManagement Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md index 7fff379bac4e4..26dbbd6e61ae9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md @@ -68,13 +68,18 @@ The list of detected apps associated with a device. | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDetectedApp +``` +This example shows how to use the Get-MgDeviceManagementDetectedApp Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md index e7c74cb128ee8..252900e0fcf1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md @@ -68,16 +68,6 @@ The devices that have the discovered application installed | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -623,6 +613,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md index 8d8a75e08cb99..32be13383c3ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md @@ -68,13 +68,18 @@ The list of device categories with the tenant. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCategory +``` +This example shows how to use the Get-MgDeviceManagementDeviceCategory Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md index 9c32fee1d88f4..46e3c3c4d6a87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md @@ -69,13 +69,18 @@ The device compliance policies. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicy +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicy Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md index edb6ad9583ebe..5fa662d0b29ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -69,13 +69,18 @@ The collection of assignments for this compliance policy. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyAssignment Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 3700b6381ae34..eb6e2c2d66d2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -70,16 +70,6 @@ Compliance Setting State Device Summary | 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 ### -All @@ -625,6 +615,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 8de2b5ba089dd..c962b96ad83ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -47,13 +47,18 @@ The device compliance state summary for this account. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 851c52a4b3a49..3eb2ba0f7763f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -69,13 +69,18 @@ List of DeviceComplianceDeviceStatus. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index fad5bdc37135d..1fad03adc95e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -58,13 +58,18 @@ Device compliance devices status overview | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index e302cd710f4a1..55997c0880b7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -73,13 +73,18 @@ This is a required property when creating any individual per-platform compliance | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 6f40d6af929c3..ebd5f23f0ad93 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -73,13 +73,18 @@ Compliance policy must have one and only one block scheduled action. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index a11d8bdbf172b..5ad1a0b6f3989 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -69,13 +69,18 @@ The summary states of compliance policy settings for this account. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index fd42ab70646ef..9f02844969a45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -71,13 +71,18 @@ Get deviceComplianceSettingStates from deviceManagement | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 8f139f0f5d69d..90eede14fc6ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -69,13 +69,18 @@ List of DeviceComplianceUserStatus. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyUserStatus Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 59c3397030932..04be81d980358 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -58,13 +58,18 @@ Device compliance users status overview | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId +``` +This example shows how to use the Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md index 4bbcc6cd7c288..1337802a303da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md @@ -69,13 +69,18 @@ The device configurations. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfiguration +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfiguration Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md index cf9229b6108e4..3b03feaa6967b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md @@ -69,13 +69,18 @@ The list of assignments for the device configuration profile. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index b4f69fe31198a..91874e73ae7fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -69,13 +69,18 @@ Device Configuration Setting State Device Summary | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index ca8fe37fc9ca7..1191051d45c7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -47,13 +47,18 @@ The device configuration device state summary for this account. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md index ec3d261d31459..747937b50c958 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -69,13 +69,18 @@ Device configuration installation status by device. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceStatus Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 92e9cef8319b8..44fb21a478fa5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -58,13 +58,18 @@ Device Configuration devices status overview | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigurationId $deviceConfigurationId +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md index 8c0295b3c09d3..a8427825f03a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -69,13 +69,18 @@ Device configuration installation status by user. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfigurationUserStatus Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 47b74a008a6ec..b45410f5495de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -58,13 +58,18 @@ Device Configuration users status overview | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurationId $deviceConfigurationId +``` +This example shows how to use the Get-MgDeviceManagementDeviceConfigurationUserStatusOverview Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md index 63a73ddf8e345..6e27004b9aa89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md @@ -67,16 +67,6 @@ The list of managed devices. | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -595,6 +585,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md index 7e55e1060a2e1..027025a30b962 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Device category -## 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/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md index ef443cfd8051f..68a1e330d700b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Device compliance policy states for this device. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -615,6 +605,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md index a7609443aef08..de1356b2a18b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Device configuration states for this device. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -615,6 +605,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md index 6c39bd5913c1f..bd74b91e6146a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md @@ -46,16 +46,6 @@ Device overview | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -315,5 +305,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md index c35bdd4ed6ef4..543fd163315d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md @@ -40,16 +40,6 @@ This cmdlet has the following aliases, The primary users associated with the managed device. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -502,5 +492,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md index 35788442b8ace..0a5b14b0642f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -69,13 +69,18 @@ The collection property of MobileAppTroubleshootingEvent. | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementMobileAppTroubleshootingEvent +``` +This example shows how to use the Get-MgDeviceManagementMobileAppTroubleshootingEvent Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index bcdc3b21c8780..905ad3d80f7da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -71,13 +71,18 @@ Indicates collection of App Log Upload Request. | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId +``` +This example shows how to use the Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md index 963a6e113200d..a61d3cad0ba65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md @@ -69,13 +69,18 @@ The Notification Message Templates. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementNotificationMessageTemplate +``` +This example shows how to use the Get-MgDeviceManagementNotificationMessageTemplate Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index bd183a752d6db..3b64463b38d01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -71,13 +71,18 @@ The list of localized messages for this Notification Message Template. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId +``` +This example shows how to use the Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md index cb4f52be29908..caba89ecc8bab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md @@ -47,13 +47,18 @@ The software update status summary. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementSoftwareUpdateStatusSummary +``` +This example shows how to use the Get-MgDeviceManagementSoftwareUpdateStatusSummary Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md index 3e29a76ff87c9..e16e079a82bb1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md @@ -68,16 +68,6 @@ The list of troubleshooting events for the tenant. | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -596,6 +586,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index c781cf1de7842..43cdc7fd3aaa7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -69,13 +69,18 @@ The windows information protection app learning summaries. | Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary +``` +This example shows how to use the Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 282941b383398..096abffc63dc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -69,13 +69,18 @@ The windows information protection network learning summaries. | Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary +``` +This example shows how to use the Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md index 301ad52f84230..be7cf6557ad35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md @@ -69,13 +69,18 @@ The list of affected malware in the tenant. | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementWindowsMalwareInformation +``` +This example shows how to use the Get-MgDeviceManagementWindowsMalwareInformation Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 91cf77eed6bcb..ff35c1629601a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -71,13 +71,18 @@ List of devices affected by current malware with the malware state on each devic | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId +``` +This example shows how to use the Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md index aac5815991604..2cf2c47a21130 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md @@ -78,8 +78,9 @@ Clean Windows device | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -89,6 +90,10 @@ $params = @{ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -ManagedDeviceId $managedDeviceId -BodyParameter $params +``` +This example shows how to use the Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md index 141c8e625d901..0dde03b9584e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md @@ -56,13 +56,18 @@ Shut down device | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Invoke-MgDownDeviceManagementManagedDeviceShut -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Invoke-MgDownDeviceManagementManagedDeviceShut Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md index 8b1f4463e7da0..1a7982940fbca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md @@ -57,13 +57,18 @@ Logout shared Apple device active user | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md index b39371883c5c3..e0d4c4ec4c394 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md @@ -56,13 +56,18 @@ Retire a device | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Invoke-MgRetireDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Invoke-MgRetireDeviceManagementManagedDevice Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md index 12cb71e898884..6b4246c989ee9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md @@ -78,8 +78,9 @@ Invoke action windowsDefenderScan | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -89,6 +90,10 @@ $params = @{ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -ManagedDeviceId $managedDeviceId -BodyParameter $params +``` +This example shows how to use the Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md index 34b5eafc349ac..28bf8fc4bb0e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md @@ -84,8 +84,9 @@ Invoke action scheduleActionsForRules | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md index e8091208f1c09..75838bedfb79c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md @@ -56,13 +56,18 @@ Remote lock | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Lock-MgDeviceManagementManagedDeviceRemote -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Lock-MgDeviceManagementManagedDeviceRemote Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md index ac92497cd37ea..0e382a96604e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md @@ -60,8 +60,9 @@ Create a new browserSiteList object to support Internet Explorer mode. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -72,6 +73,10 @@ $params = @{ New-MgAdminEdgeInternetExplorerModeSiteList -BodyParameter $params +``` +This example shows how to use the New-MgAdminEdgeInternetExplorerModeSiteList Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index e64e15b2930f2..689ac9ad19e14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -86,8 +86,9 @@ Create a new browserSharedCookie object in a browserSiteList. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -103,6 +104,10 @@ $params = @{ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BodyParameter $params +``` +This example shows how to use the New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md index 0cfc52ffe2365..a3819888ed150 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -90,8 +90,9 @@ Create a new browserSite object in a browserSiteList. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -107,6 +108,10 @@ $params = @{ New-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BodyParameter $params +``` +This example shows how to use the New-MgAdminEdgeInternetExplorerModeSiteListSite Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md index 67a512146bf63..a65310abee089 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md @@ -58,8 +58,9 @@ Create new navigation property to detectedApps for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -75,6 +76,10 @@ $params = @{ New-MgDeviceManagementDetectedApp -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDetectedApp Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md index 27b83a9022780..c1669c2791dc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md @@ -57,8 +57,9 @@ Create new navigation property to deviceCategories for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -70,6 +71,10 @@ $params = @{ New-MgDeviceManagementDeviceCategory -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCategory Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md index bd24f99038fa6..080f7d05dcd8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md @@ -65,8 +65,9 @@ Create new navigation property to deviceCompliancePolicies for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -100,6 +101,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicy -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicy Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md index e1a4470bfbe73..a9d52acc23915 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -78,8 +78,9 @@ Create new navigation property to assignments for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -93,6 +94,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index afaae6e03d290..172a3d58664f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -83,16 +83,6 @@ Create new navigation property to deviceSettingStateSummaries for deviceManageme | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementConfiguration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -796,5 +786,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index fda0293bcc88d..d146dde6503bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -82,8 +82,9 @@ Create new navigation property to deviceStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -100,6 +101,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index f7a97a0cdab41..33812403e31d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -84,8 +84,9 @@ Create new navigation property to scheduledActionsForRule for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -96,6 +97,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 6932b522dcf10..aa7d54b30ba20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -84,8 +84,9 @@ Create new navigation property to scheduledActionConfigurations for deviceManage | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. + + ## PARAMETERS ### -ActionType diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 101aa31e8706a..2f31215fc6635 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -62,8 +62,9 @@ Create new navigation property to deviceCompliancePolicySettingStateSummaries fo | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -83,6 +84,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 6a929baed7f07..7e0e72e8e7754 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -88,8 +88,9 @@ Create new navigation property to deviceComplianceSettingStates for deviceManage | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -110,6 +111,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index d9ce80bc1a252..cd7743a0ad61c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -80,8 +80,9 @@ Create new navigation property to userStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -96,6 +97,10 @@ $params = @{ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceCompliancePolicyUserStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md index 12d3091c2a8ef..ac5755c90f94f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md @@ -64,8 +64,9 @@ Create new navigation property to deviceConfigurations for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -100,6 +101,10 @@ passwordRequired = $true New-MgDeviceManagementDeviceConfiguration -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceConfiguration Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md index 250354ef2610f..547cbd69b3645 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md @@ -78,8 +78,9 @@ Create new navigation property to assignments for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -93,6 +94,10 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 36562a8e475d7..72b95fc5d4e0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -84,8 +84,9 @@ Create new navigation property to deviceSettingStateSummaries for deviceManageme | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -104,6 +105,10 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 8df1a65e430ba..f68f8330365df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -82,8 +82,9 @@ Create new navigation property to deviceStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -100,6 +101,10 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceConfigurationDeviceStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md index a8c3599880275..3271c8fb02a60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -80,8 +80,9 @@ Create new navigation property to userStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -96,6 +97,10 @@ $params = @{ New-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceConfigurationUserStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md index 2a92bf7daa82f..df54c256914d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md @@ -71,8 +71,9 @@ Create new navigation property to managedDevices for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -186,6 +187,10 @@ $params = @{ New-MgDeviceManagementManagedDevice -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementManagedDevice Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md index db0d68ea951b1..be2f394cf46d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to deviceCompliancePolicyStates for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -735,5 +725,6 @@ SETTINGSTATES : . + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md index b87a94ca8e818..c176424387a93 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to deviceConfigurationStates for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -735,5 +725,6 @@ SETTINGSTATES : . + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md index b691885234675..4b9e7704401b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -59,8 +59,9 @@ Create new navigation property to mobileAppTroubleshootingEvents for deviceManag | Application | DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -70,6 +71,10 @@ $params = @{ New-MgDeviceManagementMobileAppTroubleshootingEvent -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementMobileAppTroubleshootingEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 648ae4e3bc098..6093858306187 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -82,8 +82,9 @@ Create new navigation property to appLogCollectionRequests for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -99,6 +100,10 @@ completedDateTime = [System.DateTime]::Parse("2016-12-31T23:58:52.3534526-08:00" New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md index 2ac1076ee042d..c1583a05bd3f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md @@ -58,13 +58,18 @@ Invoke action createDownloadUrl | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -AppLogCollectionRequestId $appLogCollectionRequestId +``` +This example shows how to use the New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl Cmdlet. + + ## PARAMETERS ### -AppLogCollectionRequestId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md index fb966f8c5c111..b1085c6f013b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md @@ -60,8 +60,9 @@ Create new navigation property to notificationMessageTemplates for deviceManagem | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -77,6 +78,10 @@ $params = @{ New-MgDeviceManagementNotificationMessageTemplate -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementNotificationMessageTemplate Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 1fa6d5b5f9719..416abbe4eebb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -84,8 +84,9 @@ Create new navigation property to localizedNotificationMessages for deviceManage | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -99,6 +100,10 @@ $params = @{ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md index 339c2392e5469..78905e51a7124 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md @@ -57,16 +57,6 @@ Create new navigation property to troubleshootingEvents for deviceManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -450,5 +440,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 5eeefa8e6f3ff..1781869d4051b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -59,8 +59,9 @@ Create new navigation property to windowsInformationProtectionAppLearningSummari | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -73,6 +74,10 @@ $params = @{ New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 482fc9e988f9e..0d3bceea9fbd3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -58,8 +58,9 @@ Create new navigation property to windowsInformationProtectionNetworkLearningSum | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -71,6 +72,10 @@ $params = @{ New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md index 8c29a1dcad52b..4a0925ab663a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md @@ -61,8 +61,9 @@ Create new navigation property to windowsMalwareInformation for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -77,6 +78,10 @@ $params = @{ New-MgDeviceManagementWindowsMalwareInformation -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementWindowsMalwareInformation Cmdlet. + + ## PARAMETERS ### -AdditionalInformationUrl diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 36fb1067264de..c920d209ab250 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -85,8 +85,9 @@ Create new navigation property to deviceMalwareStates for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -102,6 +103,10 @@ $params = @{ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md index be9f23ab42667..a3844a916de0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md @@ -56,13 +56,18 @@ Delete a browserSiteList object. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId $browserSiteListId +``` +This example shows how to use the Remove-MgAdminEdgeInternetExplorerModeSiteList Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 7b7aebfe10ecd..c26d9d9228af3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -57,19 +57,29 @@ Delete a browserSharedCookie from a browserSiteList. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Delete a shared cookie that was not previously published -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId -### EXAMPLE 2 +``` +This example will delete a shared cookie that was not previously published + +### Example 2: Delete a shared cookie that was previously published + +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId +``` +This example will delete a shared cookie that was previously published + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md index cfb8811ada988..fd62690af0a9f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -57,19 +57,29 @@ Delete a browserSite from a browserSiteList. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Delete a site that was not previously published -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BrowserSiteId $browserSiteId -### EXAMPLE 2 +``` +This example will delete a site that was not previously published + +### Example 2: Delete a site that was previously published + +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BrowserSiteId $browserSiteId +``` +This example will delete a site that was previously published + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md index 2ab93bb966a6b..d38e44cb022b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md @@ -56,13 +56,18 @@ Delete navigation property detectedApps for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDetectedApp -DetectedAppId $detectedAppId +``` +This example shows how to use the Remove-MgDeviceManagementDetectedApp Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md index 306a20b566660..4b2858fce3ac9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md @@ -56,13 +56,18 @@ Delete navigation property deviceCategories for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCategory -DeviceCategoryId $deviceCategoryId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCategory Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md index 1999b9f4e0f5d..d0378d83b1f36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md @@ -56,13 +56,18 @@ Delete navigation property deviceCompliancePolicies for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId $deviceCompliancePolicyId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicy Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 656dbd0ec1928..7b6f6016376dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -57,13 +57,18 @@ Delete navigation property assignments for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceCompliancePolicyAssignmentId $deviceCompliancePolicyAssignmentId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyAssignment Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 0bc641b215da1..cbd795cdc1c45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -57,16 +57,6 @@ Delete navigation property deviceSettingStateSummaries for deviceManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementConfiguration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -477,5 +467,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 0aca86645c39b..e3aeaf8c4434f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property deviceCompliancePolicyDeviceStateSummary 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/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index abf5149156f03..17fc213d7f5e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -57,13 +57,18 @@ Delete navigation property deviceStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceDeviceStatusId $deviceComplianceDeviceStatusId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 55872c6a433cb..96253c3fee8bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property deviceStatusOverview for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -448,5 +438,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 7fd784c11fe4e..97a17ce50973f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -58,13 +58,18 @@ Delete navigation property scheduledActionsForRule for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index a14087ed902c2..199da3bbf8d52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -59,13 +59,18 @@ Delete navigation property scheduledActionConfigurations for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -DeviceComplianceActionItemId $deviceComplianceActionItemId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 5723f2a7eeb75..b20130a85f5c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -58,13 +58,18 @@ Delete navigation property deviceCompliancePolicySettingStateSummaries for devic | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 15fdfe91e29cd..d9d5315e2d422 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -58,13 +58,18 @@ Delete navigation property deviceComplianceSettingStates for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -DeviceComplianceSettingStateId $deviceComplianceSettingStateId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 75c6248f3ff01..027fb8443fedb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -57,13 +57,18 @@ Delete navigation property userStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceUserStatusId $deviceComplianceUserStatusId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 807494e5bd84f..9a0428e9d707b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property userStatusOverview for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -447,5 +437,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md index e099293246da4..3f0d92502ed97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md @@ -56,13 +56,18 @@ Delete navigation property deviceConfigurations for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId $deviceConfigurationId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceConfiguration Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md index 32ed0cd5abc35..48cbc75b65399 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md @@ -57,13 +57,18 @@ Delete navigation property assignments for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationAssignmentId $deviceConfigurationAssignmentId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 9dd73c384180b..a52cb792be259 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -58,13 +58,18 @@ Delete navigation property deviceSettingStateSummaries for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId -SettingStateDeviceSummaryId $settingStateDeviceSummaryId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 7440bed64291d..90db58ef0454f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property deviceConfigurationDeviceStateSummaries 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/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md index c3f010de06c85..7638b887c197a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -57,13 +57,18 @@ Delete navigation property deviceStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationDeviceStatusId $deviceConfigurationDeviceStatusId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationDeviceStatus Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 531bdb9a1049d..5f53b81f6726e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property deviceStatusOverview for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -447,5 +437,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md index e44e878aa82f3..691c3226539cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -57,13 +57,18 @@ Delete navigation property userStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationUserStatusId $deviceConfigurationUserStatusId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceConfigurationUserStatus Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 7e96f024d66f8..157b165b1de08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property userStatusOverview for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -447,5 +437,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md index c4f034d9a3a17..4e53df3842fae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md @@ -56,13 +56,18 @@ Delete navigation property managedDevices for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Remove-MgDeviceManagementManagedDevice Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md index 167fcd7fc3a14..af5769c926f11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property deviceCategory for deviceManagement -## 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/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md index cfdf11657db2d..c802d4a2e9067 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property deviceCompliancePolicyStates for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -468,5 +458,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md index eb57fe6e8b73c..3c76d8fcb0c79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property deviceConfigurationStates for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -468,5 +458,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md index 8d35626b2593a..beec472092dd8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md @@ -79,8 +79,9 @@ Delete user from shared Apple device | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -90,6 +91,10 @@ $params = @{ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice -ManagedDeviceId $managedDeviceId -BodyParameter $params +``` +This example shows how to use the Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md index 1930c61eaeec7..93caff9591647 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -56,13 +56,18 @@ Delete navigation property mobileAppTroubleshootingEvents for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId +``` +This example shows how to use the Remove-MgDeviceManagementMobileAppTroubleshootingEvent Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 24be85488f115..a4c3736846a7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -58,13 +58,18 @@ Delete navigation property appLogCollectionRequests for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -AppLogCollectionRequestId $appLogCollectionRequestId +``` +This example shows how to use the Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. + + ## PARAMETERS ### -AppLogCollectionRequestId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md index f8829fb317b3c..0306ea990f318 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md @@ -56,13 +56,18 @@ Delete navigation property notificationMessageTemplates for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplateId $notificationMessageTemplateId +``` +This example shows how to use the Remove-MgDeviceManagementNotificationMessageTemplate Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 078cf2b5affd0..e0b045614aa7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -58,13 +58,18 @@ Delete navigation property localizedNotificationMessages for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId -LocalizedNotificationMessageId $localizedNotificationMessageId +``` +This example shows how to use the Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md index 31814bc2c69e2..9f02b778686b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md @@ -55,16 +55,6 @@ Delete navigation property troubleshootingEvents for deviceManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -454,5 +444,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index ba58e32009397..a659e51edd072 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -58,13 +58,18 @@ Delete navigation property windowsInformationProtectionAppLearningSummaries for | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -WindowsInformationProtectionAppLearningSummaryId $windowsInformationProtectionAppLearningSummaryId +``` +This example shows how to use the Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 9be44ae4a5562..5a0abc385f891 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -58,13 +58,18 @@ Delete navigation property windowsInformationProtectionNetworkLearningSummaries | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -WindowsInformationProtectionNetworkLearningSummaryId $windowsInformationProtectionNetworkLearningSummaryId +``` +This example shows how to use the Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md index d2030da766cc4..3cd0d4d896dbd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md @@ -56,13 +56,18 @@ Delete navigation property windowsMalwareInformation for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId $windowsMalwareInformationId +``` +This example shows how to use the Remove-MgDeviceManagementWindowsMalwareInformation Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 5c2ef9913dc75..ea0ddedad6be3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -58,13 +58,18 @@ Delete navigation property deviceMalwareStates for deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId -MalwareStateForWindowsDeviceId $malwareStateForWindowsDeviceId +``` +This example shows how to use the Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md index f069abcac6ee3..115f62e836b03 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md @@ -56,13 +56,18 @@ Request remote assistance | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Request-MgDeviceManagementManagedDeviceRemoteAssistance -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Request-MgDeviceManagementManagedDeviceRemoteAssistance Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md index 4e257243592be..d9cde88a231a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md @@ -56,13 +56,18 @@ Reset passcode | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Reset-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Reset-MgDeviceManagementManagedDevicePasscode Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md index 3cd97ddec806d..54f096215fce6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md @@ -56,13 +56,18 @@ Reboot device | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Restart-MgDeviceManagementManagedDeviceNow -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Restart-MgDeviceManagementManagedDeviceNow Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md index 5e100f514d74f..c63e020404786 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md @@ -56,13 +56,18 @@ Recover passcode | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Restore-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Restore-MgDeviceManagementManagedDevicePasscode Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md index 1922867fb9e79..a1d7599607adc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md @@ -58,13 +58,18 @@ Sends test message using the specified notificationMessageTemplate in the defaul | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Send-MgDeviceManagementNotificationMessageTemplateTestMessage -NotificationMessageTemplateId $notificationMessageTemplateId +``` +This example shows how to use the Send-MgDeviceManagementNotificationMessageTemplateTestMessage Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md index d58625307de59..c91ac5e929023 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md @@ -80,8 +80,9 @@ Invoke action assign | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -100,6 +101,10 @@ $params = @{ Set-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the Set-MgDeviceManagementDeviceCompliancePolicy Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md index 3470b531f2ccc..b00348d736b08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md @@ -78,8 +78,9 @@ Invoke action assign | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -98,6 +99,10 @@ $params = @{ Set-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the Set-MgDeviceManagementDeviceConfiguration Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md index 2fe686679d0a9..167be77579384 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md @@ -56,13 +56,18 @@ Bypass activation lock | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Skip-MgDeviceManagementManagedDeviceActivationLock -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Skip-MgDeviceManagementManagedDeviceActivationLock Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md index bc7650f1a33ec..b006b51bf005e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md @@ -56,13 +56,18 @@ Invoke action syncDevice | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement Sync-MgDeviceManagementManagedDevice -ManagedDeviceId $managedDeviceId +``` +This example shows how to use the Sync-MgDeviceManagementManagedDevice Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md index 173edfdc17523..b0c6a203861ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md @@ -86,8 +86,9 @@ Update the properties of a browserSiteList object. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -98,6 +99,10 @@ $params = @{ Update-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId $browserSiteListId -BodyParameter $params +``` +This example shows how to use the Update-MgAdminEdgeInternetExplorerModeSiteList Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index b7dae173091f0..2ce1858a6a57d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -87,8 +87,9 @@ Update the properties of a browserSharedCookie object. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -103,6 +104,10 @@ $params = @{ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId $browserSiteListId -BrowserSharedCookieId $browserSharedCookieId -BodyParameter $params +``` +This example shows how to use the Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md index 77d4357ed8b4e..f082db6c8cc97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -90,8 +90,9 @@ Update the properties of a browserSite object. | Application | BrowserSiteLists.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -106,6 +107,10 @@ $params = @{ Update-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId $browserSiteListId -BrowserSiteId $browserSiteId -BodyParameter $params +``` +This example shows how to use the Update-MgAdminEdgeInternetExplorerModeSiteListSite Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md index aa346b715273d..2f0d23654a26e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md @@ -115,8 +115,9 @@ Update deviceManagement | Application | DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -126,6 +127,10 @@ $params = @{ Update-MgDeviceManagement -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagement Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md index d2bf32c17e16d..3078a5f75f24d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md @@ -81,8 +81,9 @@ Update the navigation property detectedApps in deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -98,6 +99,10 @@ $params = @{ Update-MgDeviceManagementDetectedApp -DetectedAppId $detectedAppId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDetectedApp Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md index 63def68f83cf8..070989efa48a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md @@ -78,8 +78,9 @@ Update the navigation property deviceCategories in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -91,6 +92,10 @@ $params = @{ Update-MgDeviceManagementDeviceCategory -DeviceCategoryId $deviceCategoryId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCategory Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md index 9cdd40f0722a1..1b7983683261b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md @@ -94,8 +94,9 @@ Update the navigation property deviceCompliancePolicies in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -119,6 +120,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicy Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 1c2cb2ef4a86a..926704a55e7fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -80,8 +80,9 @@ Update the navigation property assignments in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -95,6 +96,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceCompliancePolicyAssignmentId $deviceCompliancePolicyAssignmentId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 8074040f6a09f..d395c4aa7ccb1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -85,16 +85,6 @@ Update the navigation property deviceSettingStateSummaries in deviceManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementConfiguration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -825,5 +815,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index 098ced5b3768e..babba1febc19a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -61,8 +61,9 @@ Update the navigation property deviceCompliancePolicyDeviceStateSummary in devic | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -81,6 +82,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 3d7a68ac56685..2aeecd8f1c41b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -83,8 +83,9 @@ Update the navigation property deviceStatuses in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceDeviceStatusId $deviceComplianceDeviceStatusId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 1101b53edef52..3d4edad75b7af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -83,8 +83,9 @@ Update the navigation property deviceStatusOverview in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 0824ec1df21bf..7c1a844fec176 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -84,8 +84,9 @@ Update the navigation property scheduledActionsForRule in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -96,6 +97,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 8ad2977835fec..604498b2e2440 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -85,8 +85,9 @@ Update the navigation property scheduledActionConfigurations in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -102,6 +103,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceScheduledActionForRuleId $deviceComplianceScheduledActionForRuleId -DeviceComplianceActionItemId $deviceComplianceActionItemId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration Cmdlet. + + ## PARAMETERS ### -ActionType diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index a9ff371b4124d..39e726be7361d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -90,8 +90,9 @@ Update the navigation property deviceCompliancePolicySettingStateSummaries in de | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -111,6 +112,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 58011a78b5302..e25312cb5c7f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -88,8 +88,9 @@ Update the navigation property deviceComplianceSettingStates in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -110,6 +111,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -DeviceComplianceSettingStateId $deviceComplianceSettingStateId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 5809b1d5e1957..68986b6abd643 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -81,8 +81,9 @@ Update the navigation property userStatuses in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -97,6 +98,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId $deviceCompliancePolicyId -DeviceComplianceUserStatusId $deviceComplianceUserStatusId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyUserStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index a55b731f52319..baccc48922198 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -83,8 +83,9 @@ Update the navigation property userStatusOverview in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceCompliancePolicyId $deviceCompliancePolicyId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md index 44da444b72b34..3615c4a4cd23d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md @@ -92,8 +92,9 @@ Update the navigation property deviceConfigurations in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -109,6 +110,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfiguration Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md index 7215dd799c3fe..62a3c4137c7db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md @@ -79,8 +79,9 @@ Update the navigation property assignments in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -94,6 +95,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationAssignmentId $deviceConfigurationAssignmentId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 23658eea2f0c9..cfe9a9b3c5676 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -86,8 +86,9 @@ Update the navigation property deviceSettingStateSummaries in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -106,6 +107,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfigurationId $deviceConfigurationId -SettingStateDeviceSummaryId $settingStateDeviceSummaryId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index f8627d8bec3ac..22b147ee2b5ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -60,8 +60,9 @@ Update the navigation property deviceConfigurationDeviceStateSummaries in device | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -78,6 +79,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 573dc310b8656..1f587c279e6c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -83,8 +83,9 @@ Update the navigation property deviceStatuses in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationDeviceStatusId $deviceConfigurationDeviceStatusId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 984b5c62bd050..1534d59cd8601 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -83,8 +83,9 @@ Update the navigation property deviceStatusOverview in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md index 30e2c35e2924b..072e89bbdbfe3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -82,8 +82,9 @@ Update the navigation property userStatuses in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -98,6 +99,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId $deviceConfigurationId -DeviceConfigurationUserStatusId $deviceConfigurationUserStatusId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfigurationUserStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index d65991b834296..28ec63d56d510 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -83,8 +83,9 @@ Update the navigation property userStatusOverview in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurationId $deviceConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceConfigurationUserStatusOverview Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md index 9d0de83c9937c..2c5bb87f86e77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md @@ -124,16 +124,6 @@ Update the navigation property managedDevices in deviceManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -11890,5 +11880,6 @@ Defaults to setting on client device. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md index a5b87630a8e71..ac6cbc3952b17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the navigation property deviceCategory in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -591,5 +581,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 56a067e323402..1eb7313ec3fb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property deviceCompliancePolicyStates in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -762,5 +752,6 @@ SETTINGSTATES : . + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md index a20b4531ffde3..af7967ca7054b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property deviceConfigurationStates in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -762,5 +752,6 @@ SETTINGSTATES : . + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md index d5bbf9782c09b..e216f762651d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md @@ -80,8 +80,9 @@ Invoke action updateWindowsDeviceAccount | Application | DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -102,6 +103,10 @@ $params = @{ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -ManagedDeviceId $managedDeviceId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md index 8616ea123d4fd..92318f9508551 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -80,8 +80,9 @@ Update the navigation property mobileAppTroubleshootingEvents in deviceManagemen | Application | DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -91,6 +92,10 @@ $params = @{ Update-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementMobileAppTroubleshootingEvent Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index c57c2e9c88e4a..4aba84112ab83 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -83,8 +83,9 @@ Update the navigation property appLogCollectionRequests in deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -100,6 +101,10 @@ completedDateTime = [System.DateTime]::Parse("2016-12-31T23:58:52.3534526-08:00" Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -MobileAppTroubleshootingEventId $mobileAppTroubleshootingEventId -AppLogCollectionRequestId $appLogCollectionRequestId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md index 7fa30c1c7c168..d5b209ef01328 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md @@ -84,8 +84,9 @@ Update the navigation property notificationMessageTemplates in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -101,6 +102,10 @@ $params = @{ Update-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplateId $notificationMessageTemplateId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementNotificationMessageTemplate Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 7f8a9e6ed116e..136f1c1dacf01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -84,8 +84,9 @@ Update the navigation property localizedNotificationMessages in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -99,6 +100,10 @@ $params = @{ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -NotificationMessageTemplateId $notificationMessageTemplateId -LocalizedNotificationMessageId $localizedNotificationMessageId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md index 12ed4186fe4bc..5315650123e90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md @@ -77,16 +77,6 @@ Update the navigation property troubleshootingEvents in deviceManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -594,5 +584,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 27de889fcc8c1..d6a5e300f5b24 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -84,8 +84,9 @@ Update the navigation property windowsInformationProtectionAppLearningSummaries | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -98,6 +99,10 @@ $params = @{ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -WindowsInformationProtectionAppLearningSummaryId $windowsInformationProtectionAppLearningSummaryId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 07ac1f1251570..3c56cbe09fd63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -82,8 +82,9 @@ Update the navigation property windowsInformationProtectionNetworkLearningSummar | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -95,6 +96,10 @@ $params = @{ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -WindowsInformationProtectionNetworkLearningSummaryId $windowsInformationProtectionNetworkLearningSummaryId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md index 47015362dda6e..fd9de6fbe1681 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md @@ -84,8 +84,9 @@ Update the navigation property windowsMalwareInformation in deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -100,6 +101,10 @@ $params = @{ Update-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId $windowsMalwareInformationId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementWindowsMalwareInformation Cmdlet. + + ## PARAMETERS ### -AdditionalInformationUrl diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index 57500502dba16..fcbe2ebc03824 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -86,8 +86,9 @@ Update the navigation property deviceMalwareStates in deviceManagement | Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement @@ -103,6 +104,10 @@ $params = @{ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -WindowsMalwareInformationId $windowsMalwareInformationId -MalwareStateForWindowsDeviceId $malwareStateForWindowsDeviceId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState Cmdlet. + + ## PARAMETERS ### -AdditionalProperties From a0f8c9b8a90eaa665867caa7c08a3c05a9d7b861 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:30 +0000 Subject: [PATCH 15/17] Remove boiler plate code injected by Autorest --- .../Get-MgAdminEdge.md | 11 +---------- .../Get-MgAdminEdgeInternetExplorerMode.md | 11 +---------- ...et-MgAdminEdgeInternetExplorerModeSiteListCount.md | 11 +---------- ...geInternetExplorerModeSiteListSharedCookieCount.md | 11 +---------- ...gAdminEdgeInternetExplorerModeSiteListSiteCount.md | 11 +---------- .../Get-MgDeviceManagementDetectedAppCount.md | 11 +---------- ...MgDeviceManagementDetectedAppManagedDeviceCount.md | 11 +---------- .../Get-MgDeviceManagementDeviceCategoryCount.md | 11 +---------- ...ManagementDeviceCompliancePolicyAssignmentCount.md | 11 +---------- ...t-MgDeviceManagementDeviceCompliancePolicyCount.md | 11 +---------- ...eCompliancePolicyDeviceSettingStateSummaryCount.md | 11 +---------- ...nagementDeviceCompliancePolicyDeviceStatusCount.md | 11 +---------- ...viceCompliancePolicyScheduledActionForRuleCount.md | 11 +---------- ...dActionForRuleScheduledActionConfigurationCount.md | 11 +---------- ...tDeviceCompliancePolicySettingStateSummaryCount.md | 11 +---------- ...ngStateSummaryDeviceComplianceSettingStateCount.md | 11 +---------- ...ManagementDeviceCompliancePolicyUserStatusCount.md | 11 +---------- ...iceManagementDeviceConfigurationAssignmentCount.md | 11 +---------- .../Get-MgDeviceManagementDeviceConfigurationCount.md | 11 +---------- ...viceConfigurationDeviceSettingStateSummaryCount.md | 11 +---------- ...eManagementDeviceConfigurationDeviceStatusCount.md | 11 +---------- ...mentDeviceConfigurationOmaSettingPlainTextValue.md | 11 +---------- ...iceManagementDeviceConfigurationUserStatusCount.md | 11 +---------- ...et-MgDeviceManagementManagedDeviceCategoryByRef.md | 11 +---------- ...nagementManagedDeviceCompliancePolicyStateCount.md | 11 +---------- ...eManagementManagedDeviceConfigurationStateCount.md | 11 +---------- .../Get-MgDeviceManagementManagedDeviceCount.md | 11 +---------- ...viceManagementManagedDeviceLogCollectionRequest.md | 11 +---------- ...anagementManagedDeviceLogCollectionRequestCount.md | 11 +---------- ...ceManagementManagedDeviceWindowsProtectionState.md | 11 +---------- ...eviceWindowsProtectionStateDetectedMalwareState.md | 11 +---------- ...WindowsProtectionStateDetectedMalwareStateCount.md | 11 +---------- ...roubleshootingEventAppLogCollectionRequestCount.md | 11 +---------- ...iceManagementMobileAppTroubleshootingEventCount.md | 11 +---------- ...eviceManagementNotificationMessageTemplateCount.md | 11 +---------- ...essageTemplateLocalizedNotificationMessageCount.md | 11 +---------- ...Get-MgDeviceManagementTroubleshootingEventCount.md | 11 +---------- ...owsInformationProtectionAppLearningSummaryCount.md | 11 +---------- ...nformationProtectionNetworkLearningSummaryCount.md | 11 +---------- ...gDeviceManagementWindowsMalwareInformationCount.md | 11 +---------- ...indowsMalwareInformationDeviceMalwareStateCount.md | 11 +---------- ...entManagedDeviceLogCollectionRequestDownloadUrl.md | 11 +---------- ...eviceWindowsProtectionStateDetectedMalwareState.md | 11 +---------- ...Publish-MgAdminEdgeInternetExplorerModeSiteList.md | 11 +---------- .../Remove-MgAdminEdge.md | 11 +---------- .../Remove-MgAdminEdgeInternetExplorerMode.md | 11 +---------- ...ve-MgDeviceManagementManagedDeviceCategoryByRef.md | 11 +---------- ...viceManagementManagedDeviceLogCollectionRequest.md | 11 +---------- ...ceManagementManagedDeviceWindowsProtectionState.md | 11 +---------- ...eviceWindowsProtectionStateDetectedMalwareState.md | 11 +---------- ...et-MgDeviceManagementManagedDeviceCategoryByRef.md | 11 +---------- .../Update-MgAdminEdge.md | 11 +---------- .../Update-MgAdminEdgeInternetExplorerMode.md | 11 +---------- ...viceManagementManagedDeviceLogCollectionRequest.md | 11 +---------- ...ceManagementManagedDeviceWindowsProtectionState.md | 11 +---------- ...eviceWindowsProtectionStateDetectedMalwareState.md | 11 +---------- 56 files changed, 56 insertions(+), 560 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md index c2b3fb1d90632..d125beef42b1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md @@ -40,16 +40,6 @@ This cmdlet has the following aliases, A container for Microsoft Edge resources. 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/Get-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md index 3c1251c294289..ddc68ca8fc56f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, A container for Internet Explorer mode resources. -## 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/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md index de1a074122240..f3d2ede01134f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BrowserSiteLists.Read.All, BrowserSiteLists.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/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md index 9afacac5664b8..c143c2c57628a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md index fa782060c17c7..6b6570e6d2ab0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BrowserSiteLists.Read.All, BrowserSiteLists.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -411,5 +401,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md index 20c3683a8a78e..8b751417d7ca3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.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/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md index 932a1a8d8b0ab..4fac12e9fab06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md @@ -56,16 +56,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -411,5 +401,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md index aa7c0a0662757..a0de917d529d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md index babb913de5f03..1319dfbcf9d9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md index 56b9d86a972ee..a7ae8fcd0ecd3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.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/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md index 427bc66932048..b200ad7fd4af1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md index 68378ed61fd7d..3c97fe525ed4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md index ad1de747012ff..78acd4ef12449 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md index 88a5eb97e8a8b..cf098ee10fbdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md @@ -58,16 +58,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 @@ -434,5 +424,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md index 5a6e57adab263..c61d045f31a66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.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/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md index eafd3d83c285e..d492ff98b92d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md index ee6469b832dd5..085e441450b39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md index 7a37ea08f475d..c7195047a60cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md index 80e69e8fad9f9..ff9e2b0f91979 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.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/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md index a9d7fb435b4e1..00aaae6afa588 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md index 2444fc475950b..96cc1daf2fee3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md index 0097221e093c4..8decf17747115 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md @@ -57,16 +57,6 @@ Invoke function getOmaSettingPlainTextValue | 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 @@ -391,5 +381,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md index 492ae8628f54e..aa0ac9d0e2b6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md @@ -57,16 +57,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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md index de3e116539f0d..c30730d8801eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Device category -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -360,5 +350,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md index c5a55f7af5c18..ef130adfbc214 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.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 @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md index f7f2ff3aacd7c..c5f1b4beb9afc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.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 @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md index 2c2915eb5d70a..294dcdf055b3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.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/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 579fc8eebcc44..a944dc2557cad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, List of log collection requests -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -616,5 +606,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md index c474e9838777c..bbd2f3fbc42a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.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 @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md index 9b67bdad81943..a7b005dd1d5a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, The device protection status. This property is read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -408,5 +398,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 49abe50cc3dd4..44137e7aa7dcb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -61,16 +61,6 @@ This cmdlet has the following aliases, Device malware list -## 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/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md index 544c51d342679..32b2967f67abd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.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 @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md index b715cbd46900f..043f3ef222ae2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md index 73abd6602b798..2e5c5bbd6fc80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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/Get-MgDeviceManagementNotificationMessageTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md index 2e679efb56b4d..9eca722617366 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.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/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md index 5ec7fee446bf0..ec8e4d09e58cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.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 @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md index c7a48d1dc1416..6a46e198d3a9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.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/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md index 611e5b3b93424..0e61072265fef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.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/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md index 9a7a2e39a4e48..36121cbb58820 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.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/Get-MgDeviceManagementWindowsMalwareInformationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md index 01f120cb9b89e..50520da7a0861 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.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/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md index a7082fa4c4171..0707dae9ce054 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md index 6552a653b8fd2..4dd3f089c8215 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Invoke action createDownloadUrl -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -427,5 +417,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 47b0b3e67077a..9fe9188a38cac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Create new navigation property to detectedMalwareState for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalInformationUrl @@ -819,5 +809,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md index 3dc2c98d9990b..58f68cc36d934 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md @@ -79,16 +79,6 @@ Publish the specified browserSiteList for devices to download. | Delegated (personal Microsoft account) | Not supported | | Application | BrowserSiteLists.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -717,5 +707,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md index ccec8b64cb062..0310ba042e31f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property edge for admin -## 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/Remove-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md index 8b9ce604c12ac..dffcb5eef5b2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property internetExplorerMode for admin -## 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/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md index e8a594ff1db0d..e444a42e7e30d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete ref of navigation property deviceCategory for deviceManagement -## 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/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 87fb46a120fa0..7c1b3626193fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property logCollectionRequests for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -468,5 +458,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md index ebf596c5497ea..f6e88ac2e0de3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property windowsProtectionState for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -447,5 +437,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 3b2ca85c41bfe..4731d8bfe68a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property detectedMalwareState for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md index 343335717e11d..04417187a72e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Update the ref of navigation property deviceCategory in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -579,5 +569,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md index f1bf057670cd7..bbf9b72552739 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Update the navigation property edge in admin -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -562,5 +552,6 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md index a927609124a1f..1ffb1fdbde9e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Update the navigation property internetExplorerMode in admin -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -554,5 +544,6 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 940d218a55238..304cea48b1814 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property logCollectionRequests in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -789,5 +779,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md index ce2d495540cb1..1115c329956c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -88,16 +88,6 @@ This cmdlet has the following aliases, Update the navigation property windowsProtectionState in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1212,5 +1202,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 61638d080a38f..92f3c9dbae593 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -80,16 +80,6 @@ This cmdlet has the following aliases, Update the navigation property detectedMalwareState in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalInformationUrl @@ -848,5 +838,6 @@ INPUTOBJECT ``: Identity Parameter + From d4e86907b68d5faffde40137b9a45cc0d9aec79c Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:39 +0000 Subject: [PATCH 16/17] Removed invalid full stops from the beginning of lines --- .../Clear-MgDeviceManagementManagedDevice.md | 10 +++++----- ...gCleanDeviceManagementManagedDeviceWindowsDevice.md | 4 ++-- ...ScanDeviceManagementManagedDeviceWindowsDefender.md | 4 ++-- ...iceManagementDeviceCompliancePolicyActionForRule.md | 4 ++-- ...agementDeviceCompliancePolicySettingStateSummary.md | 2 +- ...viceManagementManagedDeviceCompliancePolicyState.md | 2 +- ...gDeviceManagementManagedDeviceConfigurationState.md | 2 +- .../Publish-MgAdminEdgeInternetExplorerModeSiteList.md | 8 ++++---- ...ManagementManagedDeviceUserFromSharedAppleDevice.md | 4 ++-- .../Set-MgDeviceManagementDeviceCompliancePolicy.md | 4 ++-- .../Set-MgDeviceManagementDeviceConfiguration.md | 4 ++-- ...Set-MgDeviceManagementManagedDeviceCategoryByRef.md | 4 ++-- ...agementDeviceCompliancePolicySettingStateSummary.md | 2 +- ...viceManagementManagedDeviceCompliancePolicyState.md | 2 +- ...gDeviceManagementManagedDeviceConfigurationState.md | 2 +- ...eviceManagementManagedDeviceWindowsDeviceAccount.md | 2 +- 16 files changed, 30 insertions(+), 30 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md index e7d8a27c4229b..0bec2b0e91cec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md @@ -129,7 +129,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -291,7 +291,7 @@ HelpMessage: '' ### -KeepEnrollmentData -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -318,7 +318,7 @@ HelpMessage: '' ### -KeepUserData -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -345,7 +345,7 @@ HelpMessage: '' ### -MacOSUnlockCode -. + ```yaml Type: System.String @@ -420,7 +420,7 @@ HelpMessage: '' ### -PersistEsimDataPlan -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md index 2cf2c47a21130..8b146f61debad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -287,7 +287,7 @@ HelpMessage: '' ### -KeepUserData -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md index 6b4246c989ee9..8fb86ebe31e41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -398,7 +398,7 @@ HelpMessage: '' ### -QuickScan -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md index 28bf8fc4bb0e0..7a663a8338a99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md @@ -137,7 +137,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -235,7 +235,7 @@ HelpMessage: '' ### -DeviceComplianceScheduledActionForRules -. + To construct, see NOTES section for DEVICECOMPLIANCESCHEDULEDACTIONFORRULES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 2f31215fc6635..450bc72c2affd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -220,7 +220,7 @@ HelpMessage: '' ### -DeviceComplianceSettingStates -. + To construct, see NOTES section for DEVICECOMPLIANCESETTINGSTATES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md index be2f394cf46d2..36ba52cf50d62 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -487,7 +487,7 @@ HelpMessage: '' ### -SettingStates -. + To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md index c176424387a93..97e42b88256db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md @@ -487,7 +487,7 @@ HelpMessage: '' ### -SettingStates -. + To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md index 58f68cc36d934..aa55556d1bef1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md @@ -110,7 +110,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -384,7 +384,7 @@ HelpMessage: '' ### -Revision -. + ```yaml Type: System.String @@ -411,7 +411,7 @@ HelpMessage: '' ### -SharedCookies -. + To construct, see NOTES section for SHAREDCOOKIES properties and create a hash table. ```yaml @@ -439,7 +439,7 @@ HelpMessage: '' ### -Sites -. + To construct, see NOTES section for SITES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md index beec472092dd8..6ed1d8c6470a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md @@ -126,7 +126,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -421,7 +421,7 @@ HelpMessage: '' ### -UserPrincipalName -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md index c91ac5e929023..b7ffbd6eebd64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md @@ -136,7 +136,7 @@ HelpMessage: '' ### -Assignments -. + To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -164,7 +164,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/Set-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md index b00348d736b08..c0cfc32a9b03b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md @@ -134,7 +134,7 @@ HelpMessage: '' ### -Assignments -. + To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -162,7 +162,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/Set-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md index 04417187a72e8..8d8462e666898 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -317,7 +317,7 @@ HelpMessage: '' ### -OdataType -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 39e726be7361d..3edec96a715ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -299,7 +299,7 @@ HelpMessage: '' ### -DeviceComplianceSettingStates -. + To construct, see NOTES section for DEVICECOMPLIANCESETTINGSTATES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 1eb7313ec3fb0..f81a9d7b3a248 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -514,7 +514,7 @@ HelpMessage: '' ### -SettingStates -. + To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md index af7967ca7054b..a337b8588842e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md @@ -514,7 +514,7 @@ HelpMessage: '' ### -SettingStates -. + To construct, see NOTES section for SETTINGSTATES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md index e216f762651d5..56a218cf01675 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md @@ -138,7 +138,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml From 79bbb627c35dd86534fc04e32b1fc4ec93f5717b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:55 +0000 Subject: [PATCH 17/17] Corrected related link to conform to the new platyps rules --- .../Clear-MgDeviceManagementManagedDevice.md | 2 +- .../Disable-MgDeviceManagementManagedDeviceLostMode.md | 2 +- .../Find-MgDeviceManagementManagedDevice.md | 2 +- .../Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md | 2 +- .../Get-MgAdminEdgeInternetExplorerMode.md | 2 +- .../Get-MgAdminEdgeInternetExplorerModeSiteList.md | 6 +++--- .../Get-MgAdminEdgeInternetExplorerModeSiteListCount.md | 2 +- ...t-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 6 +++--- ...dminEdgeInternetExplorerModeSiteListSharedCookieCount.md | 2 +- .../Get-MgAdminEdgeInternetExplorerModeSiteListSite.md | 6 +++--- .../Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md | 2 +- .../Get-MgDeviceManagement.md | 2 +- .../Get-MgDeviceManagementDetectedApp.md | 2 +- .../Get-MgDeviceManagementDetectedAppCount.md | 2 +- .../Get-MgDeviceManagementDetectedAppManagedDevice.md | 2 +- .../Get-MgDeviceManagementDetectedAppManagedDeviceCount.md | 2 +- .../Get-MgDeviceManagementDeviceCategory.md | 2 +- .../Get-MgDeviceManagementDeviceCategoryCount.md | 2 +- .../Get-MgDeviceManagementDeviceCompliancePolicy.md | 2 +- ...et-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 2 +- ...DeviceManagementDeviceCompliancePolicyAssignmentCount.md | 2 +- .../Get-MgDeviceManagementDeviceCompliancePolicyCount.md | 2 +- ...gementDeviceCompliancePolicyDeviceSettingStateSummary.md | 2 +- ...tDeviceCompliancePolicyDeviceSettingStateSummaryCount.md | 2 +- ...iceManagementDeviceCompliancePolicyDeviceStateSummary.md | 2 +- ...-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 2 +- ...viceManagementDeviceCompliancePolicyDeviceStatusCount.md | 2 +- ...eManagementDeviceCompliancePolicyDeviceStatusOverview.md | 2 +- ...anagementDeviceCompliancePolicyScheduledActionForRule.md | 2 +- ...mentDeviceCompliancePolicyScheduledActionForRuleCount.md | 2 +- ...icyScheduledActionForRuleScheduledActionConfiguration.md | 2 +- ...heduledActionForRuleScheduledActionConfigurationCount.md | 2 +- ...ceManagementDeviceCompliancePolicySettingStateSummary.md | 2 +- ...agementDeviceCompliancePolicySettingStateSummaryCount.md | 2 +- ...PolicySettingStateSummaryDeviceComplianceSettingState.md | 2 +- ...ySettingStateSummaryDeviceComplianceSettingStateCount.md | 2 +- ...et-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 2 +- ...DeviceManagementDeviceCompliancePolicyUserStatusCount.md | 2 +- ...iceManagementDeviceCompliancePolicyUserStatusOverview.md | 2 +- .../Get-MgDeviceManagementDeviceConfiguration.md | 2 +- .../Get-MgDeviceManagementDeviceConfigurationAssignment.md | 2 +- ...-MgDeviceManagementDeviceConfigurationAssignmentCount.md | 2 +- .../Get-MgDeviceManagementDeviceConfigurationCount.md | 2 +- ...anagementDeviceConfigurationDeviceSettingStateSummary.md | 2 +- ...mentDeviceConfigurationDeviceSettingStateSummaryCount.md | 2 +- ...DeviceManagementDeviceConfigurationDeviceStateSummary.md | 2 +- ...Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 2 +- ...gDeviceManagementDeviceConfigurationDeviceStatusCount.md | 2 +- ...viceManagementDeviceConfigurationDeviceStatusOverview.md | 2 +- ...ManagementDeviceConfigurationOmaSettingPlainTextValue.md | 2 +- .../Get-MgDeviceManagementDeviceConfigurationUserStatus.md | 2 +- ...-MgDeviceManagementDeviceConfigurationUserStatusCount.md | 2 +- ...DeviceManagementDeviceConfigurationUserStatusOverview.md | 2 +- .../Get-MgDeviceManagementManagedDevice.md | 2 +- .../Get-MgDeviceManagementManagedDeviceCategory.md | 2 +- .../Get-MgDeviceManagementManagedDeviceCategoryByRef.md | 2 +- ...-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 2 +- ...viceManagementManagedDeviceCompliancePolicyStateCount.md | 2 +- ...Get-MgDeviceManagementManagedDeviceConfigurationState.md | 2 +- ...gDeviceManagementManagedDeviceConfigurationStateCount.md | 2 +- .../Get-MgDeviceManagementManagedDeviceCount.md | 2 +- ...t-MgDeviceManagementManagedDeviceLogCollectionRequest.md | 2 +- ...eviceManagementManagedDeviceLogCollectionRequestCount.md | 2 +- .../Get-MgDeviceManagementManagedDeviceOverview.md | 2 +- .../Get-MgDeviceManagementManagedDeviceUser.md | 2 +- ...MgDeviceManagementManagedDeviceWindowsProtectionState.md | 2 +- ...nagedDeviceWindowsProtectionStateDetectedMalwareState.md | 2 +- ...DeviceWindowsProtectionStateDetectedMalwareStateCount.md | 2 +- .../Get-MgDeviceManagementMobileAppTroubleshootingEvent.md | 2 +- ...tMobileAppTroubleshootingEventAppLogCollectionRequest.md | 2 +- ...leAppTroubleshootingEventAppLogCollectionRequestCount.md | 2 +- ...-MgDeviceManagementMobileAppTroubleshootingEventCount.md | 2 +- .../Get-MgDeviceManagementNotificationMessageTemplate.md | 2 +- ...et-MgDeviceManagementNotificationMessageTemplateCount.md | 2 +- ...tificationMessageTemplateLocalizedNotificationMessage.md | 2 +- ...ationMessageTemplateLocalizedNotificationMessageCount.md | 2 +- .../Get-MgDeviceManagementSoftwareUpdateStatusSummary.md | 2 +- .../Get-MgDeviceManagementTroubleshootingEvent.md | 2 +- .../Get-MgDeviceManagementTroubleshootingEventCount.md | 2 +- ...agementWindowsInformationProtectionAppLearningSummary.md | 2 +- ...ntWindowsInformationProtectionAppLearningSummaryCount.md | 2 +- ...entWindowsInformationProtectionNetworkLearningSummary.md | 2 +- ...ndowsInformationProtectionNetworkLearningSummaryCount.md | 2 +- .../Get-MgDeviceManagementWindowsMalwareInformation.md | 2 +- .../Get-MgDeviceManagementWindowsMalwareInformationCount.md | 2 +- ...ManagementWindowsMalwareInformationDeviceMalwareState.md | 2 +- ...ementWindowsMalwareInformationDeviceMalwareStateCount.md | 2 +- ...oke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md | 2 +- .../Invoke-MgDownDeviceManagementManagedDeviceShut.md | 2 +- ...iceManagementManagedDeviceSharedAppleDeviceActiveUser.md | 2 +- .../Invoke-MgRetireDeviceManagementManagedDevice.md | 2 +- ...ke-MgScanDeviceManagementManagedDeviceWindowsDefender.md | 2 +- ...leDeviceManagementDeviceCompliancePolicyActionForRule.md | 2 +- .../Lock-MgDeviceManagementManagedDeviceRemote.md | 2 +- .../New-MgAdminEdgeInternetExplorerModeSiteList.md | 4 ++-- ...w-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 4 ++-- .../New-MgAdminEdgeInternetExplorerModeSiteListSite.md | 4 ++-- .../New-MgDeviceManagementDetectedApp.md | 2 +- .../New-MgDeviceManagementDeviceCategory.md | 2 +- .../New-MgDeviceManagementDeviceCompliancePolicy.md | 2 +- ...ew-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 2 +- ...gementDeviceCompliancePolicyDeviceSettingStateSummary.md | 2 +- ...-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 2 +- ...anagementDeviceCompliancePolicyScheduledActionForRule.md | 2 +- ...icyScheduledActionForRuleScheduledActionConfiguration.md | 2 +- ...ceManagementDeviceCompliancePolicySettingStateSummary.md | 2 +- ...PolicySettingStateSummaryDeviceComplianceSettingState.md | 2 +- ...ew-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 2 +- .../New-MgDeviceManagementDeviceConfiguration.md | 2 +- .../New-MgDeviceManagementDeviceConfigurationAssignment.md | 2 +- ...anagementDeviceConfigurationDeviceSettingStateSummary.md | 2 +- ...New-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 2 +- .../New-MgDeviceManagementDeviceConfigurationUserStatus.md | 2 +- .../New-MgDeviceManagementManagedDevice.md | 2 +- ...-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 2 +- ...New-MgDeviceManagementManagedDeviceConfigurationState.md | 2 +- ...anagementManagedDeviceLogCollectionRequestDownloadUrl.md | 2 +- ...nagedDeviceWindowsProtectionStateDetectedMalwareState.md | 2 +- .../New-MgDeviceManagementMobileAppTroubleshootingEvent.md | 2 +- ...tMobileAppTroubleshootingEventAppLogCollectionRequest.md | 2 +- ...roubleshootingEventAppLogCollectionRequestDownloadUrl.md | 2 +- .../New-MgDeviceManagementNotificationMessageTemplate.md | 2 +- ...tificationMessageTemplateLocalizedNotificationMessage.md | 2 +- .../New-MgDeviceManagementTroubleshootingEvent.md | 2 +- ...agementWindowsInformationProtectionAppLearningSummary.md | 2 +- ...entWindowsInformationProtectionNetworkLearningSummary.md | 2 +- .../New-MgDeviceManagementWindowsMalwareInformation.md | 2 +- ...ManagementWindowsMalwareInformationDeviceMalwareState.md | 2 +- .../Publish-MgAdminEdgeInternetExplorerModeSiteList.md | 2 +- .../Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md | 2 +- .../Remove-MgAdminEdgeInternetExplorerMode.md | 2 +- .../Remove-MgAdminEdgeInternetExplorerModeSiteList.md | 4 ++-- ...e-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 4 ++-- .../Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md | 4 ++-- .../Remove-MgDeviceManagementDetectedApp.md | 2 +- .../Remove-MgDeviceManagementDeviceCategory.md | 2 +- .../Remove-MgDeviceManagementDeviceCompliancePolicy.md | 2 +- ...ve-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 2 +- ...gementDeviceCompliancePolicyDeviceSettingStateSummary.md | 2 +- ...iceManagementDeviceCompliancePolicyDeviceStateSummary.md | 2 +- ...-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 2 +- ...eManagementDeviceCompliancePolicyDeviceStatusOverview.md | 2 +- ...anagementDeviceCompliancePolicyScheduledActionForRule.md | 2 +- ...icyScheduledActionForRuleScheduledActionConfiguration.md | 2 +- ...ceManagementDeviceCompliancePolicySettingStateSummary.md | 2 +- ...PolicySettingStateSummaryDeviceComplianceSettingState.md | 2 +- ...ve-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 2 +- ...iceManagementDeviceCompliancePolicyUserStatusOverview.md | 2 +- .../Remove-MgDeviceManagementDeviceConfiguration.md | 2 +- ...emove-MgDeviceManagementDeviceConfigurationAssignment.md | 2 +- ...anagementDeviceConfigurationDeviceSettingStateSummary.md | 2 +- ...DeviceManagementDeviceConfigurationDeviceStateSummary.md | 2 +- ...ove-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 2 +- ...viceManagementDeviceConfigurationDeviceStatusOverview.md | 2 +- ...emove-MgDeviceManagementDeviceConfigurationUserStatus.md | 2 +- ...DeviceManagementDeviceConfigurationUserStatusOverview.md | 2 +- .../Remove-MgDeviceManagementManagedDevice.md | 2 +- .../Remove-MgDeviceManagementManagedDeviceCategory.md | 2 +- .../Remove-MgDeviceManagementManagedDeviceCategoryByRef.md | 2 +- ...-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 2 +- ...ove-MgDeviceManagementManagedDeviceConfigurationState.md | 2 +- ...e-MgDeviceManagementManagedDeviceLogCollectionRequest.md | 2 +- ...eviceManagementManagedDeviceUserFromSharedAppleDevice.md | 2 +- ...MgDeviceManagementManagedDeviceWindowsProtectionState.md | 2 +- ...nagedDeviceWindowsProtectionStateDetectedMalwareState.md | 2 +- ...emove-MgDeviceManagementMobileAppTroubleshootingEvent.md | 2 +- ...tMobileAppTroubleshootingEventAppLogCollectionRequest.md | 2 +- .../Remove-MgDeviceManagementNotificationMessageTemplate.md | 2 +- ...tificationMessageTemplateLocalizedNotificationMessage.md | 2 +- .../Remove-MgDeviceManagementTroubleshootingEvent.md | 2 +- ...agementWindowsInformationProtectionAppLearningSummary.md | 2 +- ...entWindowsInformationProtectionNetworkLearningSummary.md | 2 +- .../Remove-MgDeviceManagementWindowsMalwareInformation.md | 2 +- ...ManagementWindowsMalwareInformationDeviceMalwareState.md | 2 +- ...quest-MgDeviceManagementManagedDeviceRemoteAssistance.md | 2 +- .../Reset-MgDeviceManagementManagedDevicePasscode.md | 2 +- .../Restart-MgDeviceManagementManagedDeviceNow.md | 2 +- .../Restore-MgDeviceManagementManagedDevicePasscode.md | 2 +- ...eviceManagementNotificationMessageTemplateTestMessage.md | 2 +- .../Set-MgDeviceManagementDeviceCompliancePolicy.md | 2 +- .../Set-MgDeviceManagementDeviceConfiguration.md | 2 +- .../Set-MgDeviceManagementManagedDeviceCategoryByRef.md | 2 +- .../Skip-MgDeviceManagementManagedDeviceActivationLock.md | 2 +- .../Sync-MgDeviceManagementManagedDevice.md | 2 +- .../Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md | 2 +- .../Update-MgAdminEdgeInternetExplorerMode.md | 2 +- .../Update-MgAdminEdgeInternetExplorerModeSiteList.md | 4 ++-- ...e-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md | 4 ++-- .../Update-MgAdminEdgeInternetExplorerModeSiteListSite.md | 4 ++-- .../Update-MgDeviceManagement.md | 2 +- .../Update-MgDeviceManagementDetectedApp.md | 2 +- .../Update-MgDeviceManagementDeviceCategory.md | 2 +- .../Update-MgDeviceManagementDeviceCompliancePolicy.md | 2 +- ...te-MgDeviceManagementDeviceCompliancePolicyAssignment.md | 2 +- ...gementDeviceCompliancePolicyDeviceSettingStateSummary.md | 2 +- ...iceManagementDeviceCompliancePolicyDeviceStateSummary.md | 2 +- ...-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md | 2 +- ...eManagementDeviceCompliancePolicyDeviceStatusOverview.md | 2 +- ...anagementDeviceCompliancePolicyScheduledActionForRule.md | 2 +- ...icyScheduledActionForRuleScheduledActionConfiguration.md | 2 +- ...ceManagementDeviceCompliancePolicySettingStateSummary.md | 2 +- ...PolicySettingStateSummaryDeviceComplianceSettingState.md | 2 +- ...te-MgDeviceManagementDeviceCompliancePolicyUserStatus.md | 2 +- ...iceManagementDeviceCompliancePolicyUserStatusOverview.md | 2 +- .../Update-MgDeviceManagementDeviceConfiguration.md | 2 +- ...pdate-MgDeviceManagementDeviceConfigurationAssignment.md | 2 +- ...anagementDeviceConfigurationDeviceSettingStateSummary.md | 2 +- ...DeviceManagementDeviceConfigurationDeviceStateSummary.md | 2 +- ...ate-MgDeviceManagementDeviceConfigurationDeviceStatus.md | 2 +- ...viceManagementDeviceConfigurationDeviceStatusOverview.md | 2 +- ...pdate-MgDeviceManagementDeviceConfigurationUserStatus.md | 2 +- ...DeviceManagementDeviceConfigurationUserStatusOverview.md | 2 +- .../Update-MgDeviceManagementManagedDevice.md | 2 +- .../Update-MgDeviceManagementManagedDeviceCategory.md | 2 +- ...-MgDeviceManagementManagedDeviceCompliancePolicyState.md | 2 +- ...ate-MgDeviceManagementManagedDeviceConfigurationState.md | 2 +- ...e-MgDeviceManagementManagedDeviceLogCollectionRequest.md | 2 +- ...e-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md | 2 +- ...MgDeviceManagementManagedDeviceWindowsProtectionState.md | 2 +- ...nagedDeviceWindowsProtectionStateDetectedMalwareState.md | 2 +- ...pdate-MgDeviceManagementMobileAppTroubleshootingEvent.md | 2 +- ...tMobileAppTroubleshootingEventAppLogCollectionRequest.md | 2 +- .../Update-MgDeviceManagementNotificationMessageTemplate.md | 2 +- ...tificationMessageTemplateLocalizedNotificationMessage.md | 2 +- .../Update-MgDeviceManagementTroubleshootingEvent.md | 2 +- ...agementWindowsInformationProtectionAppLearningSummary.md | 2 +- ...entWindowsInformationProtectionNetworkLearningSummary.md | 2 +- .../Update-MgDeviceManagementWindowsMalwareInformation.md | 2 +- ...ManagementWindowsMalwareInformationDeviceMalwareState.md | 2 +- 229 files changed, 244 insertions(+), 244 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md index 0bec2b0e91cec..0cf0efb8636f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Clear-MgDeviceManagementManagedDevice.md @@ -631,7 +631,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/clear-mgdevicemanagementmanageddevice) +- [Clear-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/clear-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md index 1ee6b3bf2d8d9..a51d5fcfedc28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Disable-MgDeviceManagementManagedDeviceLostMode.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/disable-mgdevicemanagementmanageddevicelostmode) +- [Disable-MgDeviceManagementManagedDeviceLostMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/disable-mgdevicemanagementmanageddevicelostmode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md index 83f8e0334a558..5bc91786a3b70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Find-MgDeviceManagementManagedDevice.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/find-mgdevicemanagementmanageddevice) +- [Find-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/find-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md index d125beef42b1a..3d2df75156d99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdge.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/get-mgadminedge) +- [Get-MgAdminEdge](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedge) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md index ddc68ca8fc56f..e1b185f998bee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerMode.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/get-mgadminedgeinternetexplorermode) +- [Get-MgAdminEdgeInternetExplorerMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md index 6e9291e9bd867..6e0faeecca44b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteList.md @@ -578,9 +578,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelist) -- [](https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-1.0) +- [Get-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelist) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md index f3d2ede01134f..3a0ea65ec1c2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListCount.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/get-mgadminedgeinternetexplorermodesitelistcount) +- [Get-MgAdminEdgeInternetExplorerModeSiteListCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index eca09702c3c82..bddabc6925e0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -606,9 +606,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [](https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0) +- [Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md index c143c2c57628a..1efda96da1505 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookiecount) +- [Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsharedcookiecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md index 1e151cafe12ad..dbb4b1f263201 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -606,9 +606,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsite) -- [](https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0) +- [Get-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsite) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md index 6b6570e6d2ab0..6330dffc26312 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsitecount) +- [Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgadminedgeinternetexplorermodesitelistsitecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md index c23df22e36892..234e2d9f62d15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagement.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/get-mgdevicemanagement) +- [Get-MgDeviceManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagement) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md index 26dbbd6e61ae9..96a98175f6a40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedApp.md @@ -578,7 +578,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedapp) +- [Get-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md index 8b751417d7ca3..9ac90292a8417 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppCount.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/get-mgdevicemanagementdetectedappcount) +- [Get-MgDeviceManagementDetectedAppCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md index 252900e0fcf1d..04473fef0f38f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDevice.md @@ -593,7 +593,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevice) +- [Get-MgDeviceManagementDetectedAppManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md index 4fac12e9fab06..c8022335ea1f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDetectedAppManagedDeviceCount.md @@ -380,7 +380,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevicecount) +- [Get-MgDeviceManagementDetectedAppManagedDeviceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdetectedappmanageddevicecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md index 32be13383c3ff..5b861be6c121d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategory.md @@ -578,7 +578,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategory) +- [Get-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md index a0de917d529d0..0dd036d6cf2d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCategoryCount.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/get-mgdevicemanagementdevicecategorycount) +- [Get-MgDeviceManagementDeviceCategoryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecategorycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md index 46e3c3c4d6a87..53d15e5d487db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicy.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicy) +- [Get-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 5fa662d0b29ba..272d971cafef8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignment) +- [Get-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md index 1319dfbcf9d9b..4adec275e9e43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignmentcount) +- [Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md index a7ae8fcd0ecd3..f4825302f1c9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyCount.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/get-mgdevicemanagementdevicecompliancepolicycount) +- [Get-MgDeviceManagementDeviceCompliancePolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index eb6e2c2d66d2e..5b18806013cce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -595,7 +595,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) +- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md index b200ad7fd4af1..71b5d97b7c3a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummarycount) +- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index c962b96ad83ff..177efc374263b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.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/get-mgdevicemanagementdevicecompliancepolicydevicestatesummary) +- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 3eb2ba0f7763f..9624b06e94a0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatus) +- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md index 3c97fe525ed4b..9b898902cd3c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatuscount) +- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 1fad03adc95e8..1fc0d4e908ee5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) +- [Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 55997c0880b7f..bc891f4f5b7e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -610,7 +610,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) +- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md index 78acd4ef12449..0eab26ebb7e7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulecount) +- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index ebd5f23f0ad93..a24065da52ddd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -637,7 +637,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) +- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md index cf098ee10fbdc..c5a926bf5c106 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount.md @@ -403,7 +403,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfigurationcount) +- [Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfigurationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 5ad1a0b6f3989..e5dc96b4cef7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummary) +- [Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md index c61d045f31a66..579010156d388 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount.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/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarycount) +- [Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 9f02844969a45..2980a17f2447e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -608,7 +608,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) +- [Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md index d492ff98b92d9..632545f0478b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstatecount) +- [Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 90eede14fc6ef..db271a023c140 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatus) +- [Get-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md index 085e441450b39..b1c7d74ece123 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatuscount) +- [Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 04be81d980358..c81443e861a49 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) +- [Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md index 1337802a303da..ed521bc33b1ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfiguration.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfiguration) +- [Get-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md index 3b03feaa6967b..8c9dfa13ee4bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignment.md @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignment) +- [Get-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md index c7195047a60cd..07267be8d7fc9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationAssignmentCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignmentcount) +- [Get-MgDeviceManagementDeviceConfigurationAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md index ff9e2b0f91979..382c9d2ae58ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationCount.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/get-mgdevicemanagementdeviceconfigurationcount) +- [Get-MgDeviceManagementDeviceConfigurationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 91874e73ae7fe..056cfe6a13fb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) +- [Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md index 00aaae6afa588..4f6f20c2d51ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummarycount) +- [Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicesettingstatesummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 1191051d45c7a..c4b39d409777f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary.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/get-mgdevicemanagementdeviceconfigurationdevicestatesummary) +- [Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 747937b50c958..9f9f52caf4881 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatus) +- [Get-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md index 96cc1daf2fee3..dacc448fbc456 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatuscount) +- [Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 44fb21a478fa5..b3b92aeecc4b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatusoverview) +- [Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationdevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md index 8decf17747115..58c8988d9a082 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue.md @@ -360,7 +360,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationomasettingplaintextvalue) +- [Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationomasettingplaintextvalue) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md index a8427825f03a0..b7e98a47391c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -606,7 +606,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatus) +- [Get-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md index aa0ac9d0e2b6f..fee35b1d2f57f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatuscount) +- [Get-MgDeviceManagementDeviceConfigurationUserStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index b45410f5495de..61d9554eeb68e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatusoverview) +- [Get-MgDeviceManagementDeviceConfigurationUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementdeviceconfigurationuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md index 6e27004b9aa89..c139341bcb659 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDevice.md @@ -565,7 +565,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevice) +- [Get-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md index 027025a30b962..bf666f6e91cf4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategory.md @@ -374,7 +374,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategory) +- [Get-MgDeviceManagementManagedDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md index c30730d8801eb..04346a7c2764f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -329,7 +329,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategorybyref) +- [Get-MgDeviceManagementManagedDeviceCategoryByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecategorybyref) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 68a1e330d700b..8f1b9480bf85c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -585,7 +585,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystate) +- [Get-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md index ef130adfbc214..c1e7add2da2ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystatecount) +- [Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecompliancepolicystatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md index de1356b2a18b5..393a47633122c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationState.md @@ -585,7 +585,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstate) +- [Get-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md index c5f1b4beb9afc..83dc385609101 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceConfigurationStateCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstatecount) +- [Get-MgDeviceManagementManagedDeviceConfigurationStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceconfigurationstatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md index 294dcdf055b3b..6c384b5df6750 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceCount.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/get-mgdevicemanagementmanageddevicecount) +- [Get-MgDeviceManagementManagedDeviceCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md index a944dc2557cad..14b48d84c4e65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -585,7 +585,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequest) +- [Get-MgDeviceManagementManagedDeviceLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md index bbd2f3fbc42a8..c2f3caae268cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequestcount) +- [Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicelogcollectionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md index bd74b91e6146a..ebce674844c2c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceOverview.md @@ -284,7 +284,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceoverview) +- [Get-MgDeviceManagementManagedDeviceOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md index 543fd163315d9..87ddbd04213c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceUser.md @@ -471,7 +471,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceuser) +- [Get-MgDeviceManagementManagedDeviceUser](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddeviceuser) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md index a7b005dd1d5a5..6d506af632fbd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -377,7 +377,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstate) +- [Get-MgDeviceManagementManagedDeviceWindowsProtectionState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 44137e7aa7dcb..532a722897c02 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -586,7 +586,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) +- [Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md index 32b2967f67abd..c25f3f452d2e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestatecount) +- [Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md index 0a5b14b0642f0..45ff43fd59969 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingevent) +- [Get-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 905ad3d80f7da..6faad2653f1da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -608,7 +608,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) +- [Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md index 043f3ef222ae2..f61496bacef6e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestcount) +- [Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md index 2e5c5bbd6fc80..18f701ba66660 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementMobileAppTroubleshootingEventCount.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/get-mgdevicemanagementmobileapptroubleshootingeventcount) +- [Get-MgDeviceManagementMobileAppTroubleshootingEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementmobileapptroubleshootingeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md index a61d3cad0ba65..219146f976f47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplate.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplate) +- [Get-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md index 9eca722617366..7934e2a727622 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateCount.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/get-mgdevicemanagementnotificationmessagetemplatecount) +- [Get-MgDeviceManagementNotificationMessageTemplateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 3b64463b38d01..48c9800a0da06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -608,7 +608,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) +- [Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md index ec8e4d09e58cd..1c3915aa79bca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessagecount) +- [Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md index caba89ecc8bab..de0f4c24d06c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementSoftwareUpdateStatusSummary.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/get-mgdevicemanagementsoftwareupdatestatussummary) +- [Get-MgDeviceManagementSoftwareUpdateStatusSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementsoftwareupdatestatussummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md index e16e079a82bb1..2fdad1aa75542 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEvent.md @@ -566,7 +566,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingevent) +- [Get-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md index 6a46e198d3a9d..e81d9d02e5460 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementTroubleshootingEventCount.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/get-mgdevicemanagementtroubleshootingeventcount) +- [Get-MgDeviceManagementTroubleshootingEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementtroubleshootingeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 43cdc7fd3aaa7..f5b5f23871854 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummary) +- [Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md index 0e61072265fef..9e64abd4785b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount.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/get-mgdevicemanagementwindowsinformationprotectionapplearningsummarycount) +- [Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionapplearningsummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 096abffc63dc6..6dcb9f147c6b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) +- [Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md index 36121cbb58820..236b9588483c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount.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/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummarycount) +- [Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsinformationprotectionnetworklearningsummarycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md index be7cf6557ad35..dc37ca622d2a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformation.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformation) +- [Get-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md index 50520da7a0861..a783479a96c86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationCount.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/get-mgdevicemanagementwindowsmalwareinformationcount) +- [Get-MgDeviceManagementWindowsMalwareInformationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index ff35c1629601a..edfc7bd40571e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -608,7 +608,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) +- [Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md index 0707dae9ce054..4f8397c9f421b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestatecount) +- [Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/get-mgdevicemanagementwindowsmalwareinformationdevicemalwarestatecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md index 8b146f61debad..cb4b74ad7d012 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgcleandevicemanagementmanageddevicewindowsdevice) +- [Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgcleandevicemanagementmanageddevicewindowsdevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md index 0dde03b9584e6..f1f219ab84d61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgDownDeviceManagementManagedDeviceShut.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgdowndevicemanagementmanageddeviceshut) +- [Invoke-MgDownDeviceManagementManagedDeviceShut](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgdowndevicemanagementmanageddeviceshut) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md index 1a7982940fbca..085dcd3354e70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser.md @@ -416,7 +416,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mglogoutdevicemanagementmanageddevicesharedappledeviceactiveuser) +- [Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mglogoutdevicemanagementmanageddevicesharedappledeviceactiveuser) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md index e0d4c4ec4c394..01ac8e5b46a74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgRetireDeviceManagementManagedDevice.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgretiredevicemanagementmanageddevice) +- [Invoke-MgRetireDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgretiredevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md index 8fb86ebe31e41..6d4209c169a0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender.md @@ -543,7 +543,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscandevicemanagementmanageddevicewindowsdefender) +- [Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscandevicemanagementmanageddevicewindowsdefender) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md index 7a663a8338a99..18be1b2468aa0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule.md @@ -584,7 +584,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscheduledevicemanagementdevicecompliancepolicyactionforrule) +- [Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/invoke-mgscheduledevicemanagementdevicecompliancepolicyactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md index 75838bedfb79c..97b8546e66c30 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Lock-MgDeviceManagementManagedDeviceRemote.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/lock-mgdevicemanagementmanageddeviceremote) +- [Lock-MgDeviceManagementManagedDeviceRemote](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/lock-mgdevicemanagementmanageddeviceremote) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md index 0e382a96604e7..c101ae1c428ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteList.md @@ -762,8 +762,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelist) -- [](https://learn.microsoft.com/graph/api/internetexplorermode-post-sitelists?view=graph-rest-1.0) +- [New-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelist) +- [Graph API Reference](https://learn.microsoft.com/graph/api/internetexplorermode-post-sitelists?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 689ac9ad19e14..d12662fce59c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -923,8 +923,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [](https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-1.0) +- [New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md index a3819888ed150..0a61a04765387 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -929,8 +929,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsite) -- [](https://learn.microsoft.com/graph/api/browsersitelist-post-sites?view=graph-rest-1.0) +- [New-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgadminedgeinternetexplorermodesitelistsite) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-post-sites?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md index a65310abee089..493c8e86181c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDetectedApp.md @@ -11125,7 +11125,7 @@ Defaults to setting on client device. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdetectedapp) +- [New-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md index c1669c2791dc0..47bda189f27bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCategory.md @@ -442,7 +442,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecategory) +- [New-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md index 080f7d05dcd8f..20a48a32b95fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicy.md @@ -843,7 +843,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicy) +- [New-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md index a9d52acc23915..ca9df0af7d93e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -557,7 +557,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyassignment) +- [New-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index 172a3d58664f3..99eccc224c9fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -765,7 +765,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) +- [New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index d146dde6503bb..2f1c19963c3ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -731,7 +731,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicestatus) +- [New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 33812403e31d6..627601dd9af92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -609,7 +609,7 @@ Valid values 0 to 8760 ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) +- [New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index aa7d54b30ba20..e37d58523e6bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -677,7 +677,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) +- [New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 450bc72c2affd..e288cd67e014c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -677,7 +677,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummary) +- [New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index 7e0e72e8e7754..2e2dbb414619b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -853,7 +853,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) +- [New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index cd7743a0ad61c..35c92cfc61ac7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -671,7 +671,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyuserstatus) +- [New-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md index ac5755c90f94f..4e4cadba13ea0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfiguration.md @@ -785,7 +785,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfiguration) +- [New-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md index 547cbd69b3645..e79914dcc5065 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationAssignment.md @@ -557,7 +557,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationassignment) +- [New-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index 72b95fc5d4e0d..f5a5db150e192 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -791,7 +791,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) +- [New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md index f68f8330365df..88032f73f21e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -731,7 +731,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicestatus) +- [New-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md index 3271c8fb02a60..84eba6d2719d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -671,7 +671,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationuserstatus) +- [New-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md index df54c256914d8..3fee7405695b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDevice.md @@ -11657,7 +11657,7 @@ Defaults to setting on client device. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevice) +- [New-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md index 36ba52cf50d62..771422d243eda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -704,7 +704,7 @@ SETTINGSTATES : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicecompliancepolicystate) +- [New-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md index 97e42b88256db..eff4b1d95c799 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceConfigurationState.md @@ -704,7 +704,7 @@ SETTINGSTATES : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddeviceconfigurationstate) +- [New-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md index 4dd3f089c8215..c9593507a214a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl.md @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicelogcollectionrequestdownloadurl) +- [New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicelogcollectionrequestdownloadurl) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 9fe9188a38cac..61e870e2e9a6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -788,7 +788,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) +- [New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md index 4b9e7704401b8..c801db481ef07 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -430,7 +430,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingevent) +- [New-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 6093858306187..957056c3817e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -646,7 +646,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) +- [New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md index c1583a05bd3f2..f70fffb0f2bea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestdownloadurl) +- [New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequestdownloadurl) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md index b1085c6f013b4..4b58cb8664818 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplate.md @@ -559,7 +559,7 @@ To unset, set this property to true on another Localized Notification Message. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplate) +- [New-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 416abbe4eebb5..289dad0c29fc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -678,7 +678,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) +- [New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md index 78905e51a7124..4a725cf1f7482 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementTroubleshootingEvent.md @@ -419,7 +419,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementtroubleshootingevent) +- [New-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index 1781869d4051b..7e494a14ff04e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -462,7 +462,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionapplearningsummary) +- [New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 0d3bceea9fbd3..0b5e1862b41d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -438,7 +438,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) +- [New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md index 4a0925ab663a6..89f00a3ca9599 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformation.md @@ -551,7 +551,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformation) +- [New-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index c920d209ab250..309f7d2a1b94d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -705,7 +705,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) +- [New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/new-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md index aa55556d1bef1..d5e1b040c276d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Publish-MgAdminEdgeInternetExplorerModeSiteList.md @@ -686,7 +686,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/publish-mgadminedgeinternetexplorermodesitelist) +- [Publish-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/publish-mgadminedgeinternetexplorermodesitelist) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md index 0310ba042e31f..0e1abc5af87ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdge.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/remove-mgadminedge) +- [Remove-MgAdminEdge](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedge) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md index dffcb5eef5b2f..7658491664cc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerMode.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/remove-mgadminedgeinternetexplorermode) +- [Remove-MgAdminEdgeInternetExplorerMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md index a3844a916de0f..92055a5d19628 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteList.md @@ -436,8 +436,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelist) -- [](https://learn.microsoft.com/graph/api/internetexplorermode-delete-sitelists?view=graph-rest-1.0) +- [Remove-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelist) +- [Graph API Reference](https://learn.microsoft.com/graph/api/internetexplorermode-delete-sitelists?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index c26d9d9228af3..d55bc74be3220 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -469,8 +469,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [](https://learn.microsoft.com/graph/api/browsersitelist-delete-sharedcookies?view=graph-rest-1.0) +- [Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-delete-sharedcookies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md index fd62690af0a9f..1a5ac9dec5a43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -469,8 +469,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsite) -- [](https://learn.microsoft.com/graph/api/browsersitelist-delete-sites?view=graph-rest-1.0) +- [Remove-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgadminedgeinternetexplorermodesitelistsite) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-delete-sites?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md index d38e44cb022b4..8ec5aa1240515 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDetectedApp.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdetectedapp) +- [Remove-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md index 4b2858fce3ac9..0cfe73b3ccf3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCategory.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecategory) +- [Remove-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md index d0378d83b1f36..b4d437e5dfcbd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicy.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicy) +- [Remove-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 7b6f6016376dd..2849f2a0c9dba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -458,7 +458,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyassignment) +- [Remove-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index cbd795cdc1c45..ae1446061afec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -446,7 +446,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) +- [Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index e3aeaf8c4434f..e0b04e1b0c7d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.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/remove-mgdevicemanagementdevicecompliancepolicydevicestatesummary) +- [Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 17fc213d7f5e7..5a6feb59a5e5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -458,7 +458,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatus) +- [Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 96253c3fee8bb..0bb103a8725f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) +- [Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 97a17ce50973f..6e806b327134e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -459,7 +459,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) +- [Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 199da3bbf8d52..29a86295892fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -481,7 +481,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) +- [Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index b20130a85f5c4..989e310098797 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummary) +- [Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index d9d5315e2d422..ecedcdc2db77d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -459,7 +459,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) +- [Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 027fb8443fedb..78c26a0c75ddc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -458,7 +458,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatus) +- [Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index 9a0428e9d707b..835279f094cd8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -416,7 +416,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) +- [Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md index 3f0d92502ed97..7918f63e10bf5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfiguration.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfiguration) +- [Remove-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md index 48cbc75b65399..a5abe9f3527be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationAssignment.md @@ -458,7 +458,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationassignment) +- [Remove-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index a52cb792be259..a6491df9ff3c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -459,7 +459,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) +- [Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 90db58ef0454f..3c3650b76db74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary.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/remove-mgdevicemanagementdeviceconfigurationdevicestatesummary) +- [Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 7638b887c197a..a145691968dc1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -458,7 +458,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatus) +- [Remove-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 5f53b81f6726e..8f893acad1e41 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -416,7 +416,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatusoverview) +- [Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationdevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md index 691c3226539cf..399d1f007c137 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -458,7 +458,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatus) +- [Remove-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 157b165b1de08..758beaa418a52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -416,7 +416,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatusoverview) +- [Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementdeviceconfigurationuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md index 4e53df3842fae..4af857191857a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDevice.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevice) +- [Remove-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md index af5769c926f11..db3bf127efc26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategory.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategory) +- [Remove-MgDeviceManagementManagedDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md index e444a42e7e30d..2117b992e7277 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategorybyref) +- [Remove-MgDeviceManagementManagedDeviceCategoryByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecategorybyref) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md index c802d4a2e9067..b908b06e15044 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -437,7 +437,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecompliancepolicystate) +- [Remove-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md index 3c76d8fcb0c79..30b36f59c801a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceConfigurationState.md @@ -437,7 +437,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceconfigurationstate) +- [Remove-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 7c1b3626193fb..d81e203ef11f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -437,7 +437,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicelogcollectionrequest) +- [Remove-MgDeviceManagementManagedDeviceLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicelogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md index 6ed1d8c6470a9..a499a6296230b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice.md @@ -544,7 +544,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceuserfromsharedappledevice) +- [Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddeviceuserfromsharedappledevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md index f6e88ac2e0de3..c44b97fe4b736 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionState.md @@ -416,7 +416,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstate) +- [Remove-MgDeviceManagementManagedDeviceWindowsProtectionState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 4731d8bfe68a1..4bbb3303b989a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) +- [Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md index 93caff9591647..7c024f3c592bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingevent) +- [Remove-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index a4c3736846a7e..8aee8a1ef1e18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -459,7 +459,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) +- [Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md index 0306ea990f318..f5f5dd50eeda6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplate.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplate) +- [Remove-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index e0b045614aa7a..2c6b7d366ab3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -459,7 +459,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) +- [Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md index 9f02b778686b4..502e057f40057 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementTroubleshootingEvent.md @@ -423,7 +423,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementtroubleshootingevent) +- [Remove-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index a659e51edd072..3029c82173707 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionapplearningsummary) +- [Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 5a0abc385f891..2fef77fb47db0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) +- [Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md index 3cd0d4d896dbd..4938416ef7fb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformation.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformation) +- [Remove-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index ea0ddedad6be3..6fde90a3e2791 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -459,7 +459,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) +- [Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/remove-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md index 115f62e836b03..fda159ddb9f2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Request-MgDeviceManagementManagedDeviceRemoteAssistance.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/request-mgdevicemanagementmanageddeviceremoteassistance) +- [Request-MgDeviceManagementManagedDeviceRemoteAssistance](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/request-mgdevicemanagementmanageddeviceremoteassistance) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md index d9cde88a231a1..c6604bd4cf591 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Reset-MgDeviceManagementManagedDevicePasscode.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/reset-mgdevicemanagementmanageddevicepasscode) +- [Reset-MgDeviceManagementManagedDevicePasscode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/reset-mgdevicemanagementmanageddevicepasscode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md index 54f096215fce6..0eec72e0fece3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restart-MgDeviceManagementManagedDeviceNow.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restart-mgdevicemanagementmanageddevicenow) +- [Restart-MgDeviceManagementManagedDeviceNow](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restart-mgdevicemanagementmanageddevicenow) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md index c63e020404786..906bb6dfa77f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Restore-MgDeviceManagementManagedDevicePasscode.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restore-mgdevicemanagementmanageddevicepasscode) +- [Restore-MgDeviceManagementManagedDevicePasscode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/restore-mgdevicemanagementmanageddevicepasscode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md index a1d7599607adc..27c377eedb583 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Send-MgDeviceManagementNotificationMessageTemplateTestMessage.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/send-mgdevicemanagementnotificationmessagetemplatetestmessage) +- [Send-MgDeviceManagementNotificationMessageTemplateTestMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/send-mgdevicemanagementnotificationmessagetemplatetestmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md index b7ffbd6eebd64..b943c8d183628 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceCompliancePolicy.md @@ -544,7 +544,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdevicecompliancepolicy) +- [Set-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md index c0cfc32a9b03b..982f1775aba60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementDeviceConfiguration.md @@ -542,7 +542,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdeviceconfiguration) +- [Set-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md index 8d8462e666898..b90b02128630d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Set-MgDeviceManagementManagedDeviceCategoryByRef.md @@ -548,7 +548,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementmanageddevicecategorybyref) +- [Set-MgDeviceManagementManagedDeviceCategoryByRef](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/set-mgdevicemanagementmanageddevicecategorybyref) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md index 167be77579384..a3dfa47c0afb0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Skip-MgDeviceManagementManagedDeviceActivationLock.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/skip-mgdevicemanagementmanageddeviceactivationlock) +- [Skip-MgDeviceManagementManagedDeviceActivationLock](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/skip-mgdevicemanagementmanageddeviceactivationlock) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md index b006b51bf005e..ff0040146352d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Sync-MgDeviceManagementManagedDevice.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/sync-mgdevicemanagementmanageddevice) +- [Sync-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/sync-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md index bbf9b72552739..a05a61af621c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdge.md @@ -531,7 +531,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedge) +- [Update-MgAdminEdge](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedge) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md index 1ffb1fdbde9e4..9c85212532d7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerMode.md @@ -523,7 +523,7 @@ If true, indicates that the site will open in Internet Explorer 11 or Microsoft ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermode) +- [Update-MgAdminEdgeInternetExplorerMode](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermode) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md index b0c6a203861ea..e2013257d709f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteList.md @@ -960,8 +960,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelist) -- [](https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-1.0) +- [Update-MgAdminEdgeInternetExplorerModeSiteList](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelist) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md index 2ce1858a6a57d..1e6784886491e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie.md @@ -950,8 +950,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsharedcookie) -- [](https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-1.0) +- [Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsharedcookie) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md index f082db6c8cc97..b03d7a9338d0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgAdminEdgeInternetExplorerModeSiteListSite.md @@ -955,8 +955,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsite) -- [](https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-1.0) +- [Update-MgAdminEdgeInternetExplorerModeSiteListSite](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgadminedgeinternetexplorermodesitelistsite) +- [Graph API Reference](https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md index 2f0d23654a26e..47b47010b88b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagement.md @@ -26677,7 +26677,7 @@ Valid values -2147483648 to 2147483647 ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagement) +- [Update-MgDeviceManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagement) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md index 3078a5f75f24d..2dac58adbedac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDetectedApp.md @@ -11302,7 +11302,7 @@ Defaults to setting on client device. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdetectedapp) +- [Update-MgDeviceManagementDetectedApp](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdetectedapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md index 070989efa48a9..700e63a44e3ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCategory.md @@ -587,7 +587,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecategory) +- [Update-MgDeviceManagementDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md index 1b7983683261b..2f35903dc3e1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicy.md @@ -1046,7 +1046,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicy) +- [Update-MgDeviceManagementDeviceCompliancePolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md index 926704a55e7fb..018f844d81a38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyAssignment.md @@ -586,7 +586,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyassignment) +- [Update-MgDeviceManagementDeviceCompliancePolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md index d395c4aa7ccb1..1e74cb1144e18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary.md @@ -794,7 +794,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) +- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md index babba1febc19a..dd6056d40fea4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary.md @@ -602,7 +602,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatesummary) +- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md index 2aeecd8f1c41b..2d3ba28bb9be1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus.md @@ -759,7 +759,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatus) +- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md index 3d4edad75b7af..f4011ba7869fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview.md @@ -732,7 +732,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) +- [Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicydevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md index 7c1a844fec176..532ed71fd2e96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule.md @@ -636,7 +636,7 @@ Valid values 0 to 8760 ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) +- [Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md index 604498b2e2440..25c6db282855f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration.md @@ -705,7 +705,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) +- [Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyscheduledactionforrulescheduledactionconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md index 3edec96a715ec..2a44d9fdfa984 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary.md @@ -883,7 +883,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummary) +- [Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md index e25312cb5c7f9..d844cf7bfc6a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState.md @@ -880,7 +880,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) +- [Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicysettingstatesummarydevicecompliancesettingstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md index 68986b6abd643..b38363379a789 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatus.md @@ -699,7 +699,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatus) +- [Update-MgDeviceManagementDeviceCompliancePolicyUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md index baccc48922198..cf77f8d5d291e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview.md @@ -732,7 +732,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) +- [Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdevicecompliancepolicyuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md index 3615c4a4cd23d..bfb241ff88f5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfiguration.md @@ -972,7 +972,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfiguration) +- [Update-MgDeviceManagementDeviceConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md index 62a3c4137c7db..76d2ab31b37df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationAssignment.md @@ -585,7 +585,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationassignment) +- [Update-MgDeviceManagementDeviceConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md index cfe9a9b3c5676..862f96ad7d836 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary.md @@ -820,7 +820,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) +- [Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicesettingstatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md index 22b147ee2b5ab..4ec149db9d021 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary.md @@ -555,7 +555,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatesummary) +- [Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatesummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md index 1f587c279e6c4..2248a865f0e1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatus.md @@ -759,7 +759,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatus) +- [Update-MgDeviceManagementDeviceConfigurationDeviceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md index 1534d59cd8601..eb834db11b93d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview.md @@ -732,7 +732,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatusoverview) +- [Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationdevicestatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md index 072e89bbdbfe3..46abf51177017 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatus.md @@ -700,7 +700,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatus) +- [Update-MgDeviceManagementDeviceConfigurationUserStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md index 28ec63d56d510..22c10cd8da75e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementDeviceConfigurationUserStatusOverview.md @@ -732,7 +732,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatusoverview) +- [Update-MgDeviceManagementDeviceConfigurationUserStatusOverview](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementdeviceconfigurationuserstatusoverview) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md index 2c5bb87f86e77..09ab2e1b2a958 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDevice.md @@ -11859,7 +11859,7 @@ Defaults to setting on client device. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevice) +- [Update-MgDeviceManagementManagedDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md index ac6cbc3952b17..601fa07601ae4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCategory.md @@ -560,7 +560,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecategory) +- [Update-MgDeviceManagementManagedDeviceCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md index f81a9d7b3a248..fcf9251584111 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceCompliancePolicyState.md @@ -731,7 +731,7 @@ SETTINGSTATES : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecompliancepolicystate) +- [Update-MgDeviceManagementManagedDeviceCompliancePolicyState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicecompliancepolicystate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md index a337b8588842e..02facefe1a218 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceConfigurationState.md @@ -731,7 +731,7 @@ SETTINGSTATES : . ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddeviceconfigurationstate) +- [Update-MgDeviceManagementManagedDeviceConfigurationState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddeviceconfigurationstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md index 304cea48b1814..5d6d45640b01d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceLogCollectionRequest.md @@ -758,7 +758,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicelogcollectionrequest) +- [Update-MgDeviceManagementManagedDeviceLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicelogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md index 56a218cf01675..a07af4d8c3501 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount.md @@ -577,7 +577,7 @@ UPDATEWINDOWSDEVICEACCOUNTACTIONPARAMETER ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstate) +- [Update-MgDeviceManagementManagedDeviceWindowsProtectionState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md index 92f3c9dbae593..0133041de9b5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState.md @@ -817,7 +817,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) +- [Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmanageddevicewindowsprotectionstatedetectedmalwarestate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md index 92318f9508551..adfd1c8168f2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEvent.md @@ -569,7 +569,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingevent) +- [Update-MgDeviceManagementMobileAppTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md index 4aba84112ab83..a700a5fba64a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest.md @@ -674,7 +674,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) +- [Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementmobileapptroubleshootingeventapplogcollectionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md index d5b209ef01328..9e8da72e0da17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplate.md @@ -731,7 +731,7 @@ To unset, set this property to true on another Localized Notification Message. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplate) +- [Update-MgDeviceManagementNotificationMessageTemplate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md index 136f1c1dacf01..eb116dc7970d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage.md @@ -705,7 +705,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) +- [Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementnotificationmessagetemplatelocalizednotificationmessage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md index 5315650123e90..9d8f8e6c9f22d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementTroubleshootingEvent.md @@ -563,7 +563,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementtroubleshootingevent) +- [Update-MgDeviceManagementTroubleshootingEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementtroubleshootingevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md index d6a5e300f5b24..397e88480a60b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary.md @@ -617,7 +617,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionapplearningsummary) +- [Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionapplearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md index 3c56cbe09fd63..c0041769a1928 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary.md @@ -586,7 +586,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) +- [Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsinformationprotectionnetworklearningsummary) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md index fd9de6fbe1681..876fb8bd2c62b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformation.md @@ -722,7 +722,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformation) +- [Update-MgDeviceManagementWindowsMalwareInformation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md index fcbe2ebc03824..677a8cbf5080d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement/Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState.md @@ -733,7 +733,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate) +- [Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-mgdevicemanagementwindowsmalwareinformationdevicemalwarestate)