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 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 c0304ad79ada1..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,156 +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: 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: - 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: 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: 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/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..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 @@ -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 --- @@ -28,7 +28,6 @@ Clear-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeader [-MacOSUnlockCode ] [-PersistEsimDataPlan] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Wipe @@ -39,7 +38,6 @@ Clear-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### WipeViaIdentityExpanded @@ -51,7 +49,6 @@ Clear-MgDeviceManagementManagedDevice -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### WipeViaIdentity @@ -62,7 +59,6 @@ Clear-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,9 +74,9 @@ Wipe a device | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (work or school account) | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, | | Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, DeviceManagementConfiguration.ReadWrite.All, | +| Application | DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.PrivilegedOperations.All, | ## EXAMPLES ### Example 1: Code snippet 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Disable-MgDeviceManagementManagedDeviceLostMode -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DisableViaIdentity @@ -37,7 +36,6 @@ Disable-MgDeviceManagementManagedDeviceLostMode -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Find-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeaders [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### LocateViaIdentity @@ -37,7 +36,6 @@ Find-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Read-only. Get-MgAdminEdge [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ A container for Internet Explorer mode resources. Get-MgAdminEdgeInternetExplorerMode [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteList [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteList [-ExpandProperty ] [-Prope Get-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgAdminEdgeInternetExplorerModeSiteListCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieId < -BrowserSiteListId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount -BrowserSiteListId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId -Browser [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +36,7 @@ Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get deviceManagement Get-MgDeviceManagement [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Get deviceManagement | 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 (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, DeviceManagementServiceConfig.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementManagedDevices.Read.All, | +| 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 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementDetectedApp [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgDeviceManagementDetectedApp [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgDeviceManagementDetectedApp -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,9 +63,9 @@ The list of detected apps associated with a device. | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementDetectedAppCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Get the number of the resource | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementDetectedAppManagedDevice -DetectedAppId [-ExpandP [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementDetectedAppManagedDevice -DetectedAppId -ManagedD [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementDetectedAppManagedDevice -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +36,7 @@ Get-MgDeviceManagementDetectedAppManagedDeviceCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementDeviceCategory [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCategory [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgDeviceManagementDeviceCategory -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,9 +63,9 @@ The list of device categories with the tenant. | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.ReadWrite.All, | +| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceCategoryCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Get the number of the resource | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.ReadWrite.All, | +| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementDeviceCompliancePolicy [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyAs -DeviceCompliancePolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount -DeviceCompliancePol [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceCompliancePolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount -DeviceCompliancePolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ The device compliance state summary for this account. Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicy [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDevice -DeviceCompliancePolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount -DeviceComplianceP [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -DeviceComplian [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +41,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +51,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount -DeviceCompliancePolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -42,7 +41,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -DeviceComplianceScheduledActionForRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -52,7 +51,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -DeviceCompliancePolicySettingStateSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -DeviceCompliancePolicySettingStateSummaryId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId -DeviceComplianceUserStatusId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount -DeviceCompliancePol [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceCompliance [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementDeviceConfiguration [-ExpandProperty ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementDeviceConfiguration -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssignme -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignmentCount -DeviceConfigurationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceConfigurationAssignmentCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceConfigurationCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig -SettingStateDeviceSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount -DeviceConfigurationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDevice -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount -DeviceConfigurationI [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigurati [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue -DeviceConfigu -SecretReferenceValueId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusCount -DeviceConfigurationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfiguration [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementDeviceConfigurationUserStatusOverview -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementManagedDevice [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgDeviceManagementManagedDevice [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgDeviceManagementManagedDevice -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,9 +63,9 @@ The list of managed devices. | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Device category Get-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgDeviceManagementManagedDeviceCategory -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Device category Get-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId Get-MgDeviceManagementManagedDeviceCategoryByRef -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyState -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePolicy -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount -ManagedDeviceId < [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementManagedDeviceConfigurationState -ManagedDeviceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationStateI -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationStateCount -ManagedDeviceId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementManagedDeviceConfigurationStateCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementManagedDeviceCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Get the number of the resource | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequest -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionResp -ManagedDeviceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount -ManagedDeviceId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Device overview Get-MgDeviceManagementManagedDeviceOverview [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Device overview | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementManagedDeviceUser -ManagedDeviceId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionState -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState -ManagedDeviceId -WindowsDeviceMalwareStateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCou -ManagedDeviceId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCou -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEvent [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshootingEve [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEvent -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,9 +66,9 @@ Indicates collection of App Log Upload Request. | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount -MobileAppTroubleshootingEventId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Get the number of the resource | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementMobileAppTroubleshootingEventCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementNotificationMessageTemplate [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplateId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementNotificationMessageTemplate -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementNotificationMessageTemplateCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCou -NotificationMessageTemplateId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCou -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ The software update status summary. Get-MgDeviceManagementSoftwareUpdateStatusSummary [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementTroubleshootingEvent [-ExpandProperty ] [-Proper [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEvent [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementTroubleshootingEvent -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementTroubleshootingEventCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -WindowsInformationProtectionAppLearningSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -WindowsInformationProtectionNetworkLearningSummaryId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementWindowsMalwareInformation [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgDeviceManagementWindowsMalwareInformation -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,9 +64,9 @@ The list of affected malware in the tenant. | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgDeviceManagementWindowsMalwareInformationCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -42,9 +42,9 @@ Get the number of the resource | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,9 +66,9 @@ List of devices affected by current malware with the malware state on each devic | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount -WindowsMalwareInformationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,9 +53,9 @@ Get the number of the resource | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## PARAMETERS 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Clean @@ -39,7 +38,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CleanViaIdentityExpanded @@ -50,7 +48,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CleanViaIdentity @@ -61,7 +58,6 @@ Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Invoke-MgDownDeviceManagementManagedDeviceShut -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DownViaIdentity @@ -37,7 +36,6 @@ Invoke-MgDownDeviceManagementManagedDeviceShut -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser -Managed [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### LogoutViaIdentity @@ -38,7 +37,6 @@ Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Invoke-MgRetireDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RetireViaIdentity @@ -37,7 +36,6 @@ Invoke-MgRetireDeviceManagementManagedDevice -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Scan @@ -39,7 +38,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScanViaIdentityExpanded @@ -50,7 +48,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScanViaIdentity @@ -61,7 +58,6 @@ Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Schedule @@ -42,7 +41,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScheduleViaIdentityExpanded @@ -55,7 +53,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ScheduleViaIdentity @@ -67,7 +64,6 @@ Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Lock-MgDeviceManagementManagedDeviceRemote -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### LockViaIdentity @@ -37,7 +36,6 @@ Lock-MgDeviceManagementManagedDeviceRemote -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 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..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 @@ -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 --- @@ -31,7 +31,6 @@ New-MgAdminEdgeInternetExplorerModeSiteList [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +40,6 @@ New-MgAdminEdgeInternetExplorerModeSiteList -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,6 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +41,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSiteListId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -57,7 +56,6 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +65,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId [-TargetEnvironment ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -43,7 +43,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteListId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -59,7 +59,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -69,7 +69,7 @@ New-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ New-MgDeviceManagementDetectedApp [-ResponseHeadersVariable ] [-Publisher ] [-SizeInByte ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgDeviceManagementDetectedApp -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -957,11 +955,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. @@ -1657,7 +1658,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 +1696,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 +3712,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 +3918,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 +5513,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. @@ -6199,11 +6244,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. @@ -6899,7 +6947,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 +6985,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 +9001,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 +9207,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 +10802,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. 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..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 @@ -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 --- @@ -27,7 +27,7 @@ New-MgDeviceManagementDeviceCategory [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Description ] [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +37,6 @@ New-MgDeviceManagementDeviceCategory -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -35,7 +35,7 @@ New-MgDeviceManagementDeviceCompliancePolicy [-ResponseHeadersVariable ] [-UserStatuses ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +45,6 @@ New-MgDeviceManagementDeviceCompliancePolicy -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +38,6 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -48,7 +47,7 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -59,7 +58,6 @@ New-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +41,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -56,7 +54,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +64,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicy [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,7 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceCompliancePolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +52,6 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -63,7 +61,7 @@ New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -53,7 +52,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +64,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-NotificationMessageCcList ] [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,7 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -54,7 +54,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +64,6 @@ New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActio [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,6 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeader [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +42,6 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +42,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -56,7 +56,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -67,7 +67,7 @@ New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceS -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,7 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolicyId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +50,6 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +59,7 @@ New-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -34,7 +34,7 @@ New-MgDeviceManagementDeviceConfiguration [-ResponseHeadersVariable ] [-UserStatuses ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +44,6 @@ New-MgDeviceManagementDeviceConfiguration -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +37,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -47,7 +47,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -57,7 +57,7 @@ New-MgDeviceManagementDeviceConfigurationAssignment -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig [-RemediatedDeviceCount ] [-SettingName ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -DeviceConfig -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -54,7 +54,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +64,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +52,6 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -63,7 +61,7 @@ New-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,7 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +50,6 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +59,7 @@ New-MgDeviceManagementDeviceConfigurationUserStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -41,7 +41,7 @@ New-MgDeviceManagementManagedDevice [-ResponseHeadersVariable ] [-Users ] [-WindowsProtectionState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -51,7 +51,6 @@ New-MgDeviceManagementManagedDevice -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -1321,11 +1320,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. @@ -2021,7 +2023,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 +2061,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 +4077,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 +4283,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 +5878,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. @@ -6543,11 +6589,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. @@ -7243,7 +7292,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 +7330,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 +9346,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 +9552,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 +11333,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. 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..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 @@ -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 --- @@ -29,7 +29,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -ManagedDeviceId ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +39,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +51,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +61,7 @@ New-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -ManagedDeviceId [-SettingStates ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +39,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -ManagedDeviceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +51,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -61,7 +61,7 @@ New-MgDeviceManagementManagedDeviceConfigurationState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -38,7 +37,7 @@ New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +42,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -59,7 +57,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -70,7 +67,6 @@ New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEvent [-ResponseHeadersVariable ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +38,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEvent -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ErrorMessage ] [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -52,7 +51,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ErrorMessage ] [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +62,6 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownlo [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -38,7 +37,7 @@ New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownlo -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -54,9 +53,9 @@ Invoke action createDownloadUrl | 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 (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, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +| Application | DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet 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..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 @@ -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 --- @@ -30,7 +30,6 @@ New-MgDeviceManagementNotificationMessageTemplate [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,7 @@ New-MgDeviceManagementNotificationMessageTemplate -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -52,7 +52,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +63,7 @@ New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ New-MgDeviceManagementTroubleshootingEvent [-ResponseHeadersVariable ] [-AdditionalProperties ] [-CorrelationId ] [-EventDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +38,6 @@ New-MgDeviceManagementTroubleshootingEvent [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ApplicationType ] [-DeviceCount ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +39,6 @@ New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-Id ] [-Url ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgDeviceManagementWindowsMalwareInformation [-ResponseHeadersVariable ] [-LastDetectionDateTime ] [-Severity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgDeviceManagementWindowsMalwareInformation -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +41,6 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -56,7 +54,6 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +64,7 @@ New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-SharedCookies ] [-Sites ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Publish @@ -39,7 +39,6 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PublishViaIdentityExpanded @@ -50,7 +49,7 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Sites ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### PublishViaIdentity @@ -61,7 +60,6 @@ Publish-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgAdminEdge [-IfMatch ] [-ResponseHeadersVariable ] [-Bre [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgAdminEdgeInternetExplorerMode [-IfMatch ] [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-IfM [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieI [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDetectedApp -DetectedAppId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementDetectedApp -InputObject [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceCategory -DeviceCategoryId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementDeviceCategory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDev [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolic [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceComplia [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-I [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementDeviceConfiguration -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssig [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDev [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigur [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurat [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementManagedDevice -ManagedDeviceId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementManagedDeviceCategory -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementManagedDeviceCategoryByRef -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePol [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationSta [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionR [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice -ManagedDeviceId [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Delete @@ -39,7 +38,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentityExpanded @@ -50,7 +48,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice [-AdditionalProperties ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -62,7 +59,6 @@ Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionState [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshooting [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEvent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplat [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementNotificationMessageTemplate -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEv [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementTroubleshootingEvent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgDeviceManagementWindowsMalwareInformation -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Request-MgDeviceManagementManagedDeviceRemoteAssistance -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RequestViaIdentity @@ -37,7 +36,6 @@ Request-MgDeviceManagementManagedDeviceRemoteAssistance -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Reset-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ResetViaIdentity @@ -37,7 +36,6 @@ Reset-MgDeviceManagementManagedDevicePasscode -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Restart-MgDeviceManagementManagedDeviceNow -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RebootViaIdentity @@ -37,7 +36,6 @@ Restart-MgDeviceManagementManagedDeviceNow -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Restore-MgDeviceManagementManagedDevicePasscode -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RecoverViaIdentity @@ -37,7 +36,6 @@ Restore-MgDeviceManagementManagedDevicePasscode -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Send-MgDeviceManagementNotificationMessageTemplateTestMessage [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -39,7 +38,6 @@ Send-MgDeviceManagementNotificationMessageTemplateTestMessage [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Set-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-Assignments ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Assign @@ -39,7 +39,6 @@ Set-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -50,7 +49,7 @@ Set-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AssignViaIdentity @@ -61,7 +60,6 @@ Set-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Set-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-Assignments ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Assign @@ -39,7 +38,6 @@ Set-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -50,7 +48,6 @@ Set-MgDeviceManagementDeviceConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentity @@ -61,7 +58,6 @@ Set-MgDeviceManagementDeviceConfiguration -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId -Odat [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -39,7 +38,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -ManagedDeviceId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -50,7 +48,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -61,7 +58,6 @@ Set-MgDeviceManagementManagedDeviceCategoryByRef -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Skip-MgDeviceManagementManagedDeviceActivationLock -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### BypassViaIdentity @@ -37,7 +36,6 @@ Skip-MgDeviceManagementManagedDeviceActivationLock -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Sync-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeaders [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SyncViaIdentity @@ -37,7 +36,6 @@ Sync-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Update-MgAdminEdge [-ResponseHeadersVariable ] [-AdditionalProperties ] [-InternetExplorerMode ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -36,7 +36,7 @@ Update-MgAdminEdge [-ResponseHeadersVariable ] [-AdditionalProperties [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Update-MgAdminEdgeInternetExplorerMode [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-SiteLists ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +37,6 @@ Update-MgAdminEdgeInternetExplorerMode -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -BrowserSiteListId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +56,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +65,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteList -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -32,7 +32,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieI [-SourceEnvironment ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +43,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -BrowserSharedCookieI [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -58,7 +57,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -68,7 +66,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId [-TargetEnvironment ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +44,6 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -BrowserSiteId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -60,7 +59,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject ] [-WebUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -70,7 +69,7 @@ Update-MgAdminEdgeInternetExplorerModeSiteListSite -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 @@ -112,9 +110,9 @@ Update deviceManagement | 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 (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, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Application | DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES ### Example 1: Code snippet @@ -2368,11 +2366,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. @@ -3068,7 +3069,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 +3107,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 +5123,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 +5329,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 +6924,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. @@ -9342,11 +9387,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. @@ -10042,7 +10090,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 +10128,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 +12144,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 +12350,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 +13945,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. @@ -14937,11 +15029,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. @@ -15637,7 +15732,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 +15770,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 +17786,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 +17992,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 +19587,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. @@ -21377,11 +21516,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. @@ -22077,7 +22219,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 +22257,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 +24228,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 +24434,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 +26215,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. 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Update-MgDeviceManagementDetectedApp -DetectedAppId [-ResponseHeadersVa [-Publisher ] [-SizeInByte ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +38,7 @@ Update-MgDeviceManagementDetectedApp -DetectedAppId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +50,7 @@ Update-MgDeviceManagementDetectedApp -InputObject [-Platform ] [-Publisher ] [-SizeInByte ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +60,7 @@ Update-MgDeviceManagementDetectedApp -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -1098,11 +1097,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. @@ -1798,7 +1800,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 +1838,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 +3854,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 +4060,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 +5655,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. @@ -6375,11 +6421,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. @@ -7075,7 +7124,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 +7162,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 +9178,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 +9384,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 +10979,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. 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgDeviceManagementDeviceCategory -DeviceCategoryId [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgDeviceManagementDeviceCategory -DeviceCategoryId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgDeviceManagementDeviceCategory -InputObject [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgDeviceManagementDeviceCategory -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -35,7 +35,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +45,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -DeviceCompliancePolicyId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -63,7 +63,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +73,7 @@ Update-MgDeviceManagementDeviceCompliancePolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -50,7 +49,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +60,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyAssignment -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-RemediatedDeviceCount ] [-SettingName ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +56,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +66,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDev [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -DeviceComplianceDev [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +53,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +52,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-RuleName ] [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ScheduledActionConfigurations ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +64,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +42,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +55,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-NotificationTemplateId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +65,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledAc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -45,7 +44,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -61,7 +59,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -73,7 +70,6 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-UserEmail ] [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +56,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +67,7 @@ Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplian -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolic [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -DeviceCompliancePolic [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +51,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceComplia [-LastUpdateDateTime ] [-NotApplicableCount ] [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -DeviceComplia -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +52,6 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +62,7 @@ Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -34,7 +34,7 @@ Update-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId [-UserStatuses ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +44,7 @@ Update-MgDeviceManagementDeviceConfiguration -DeviceConfigurationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -61,7 +61,7 @@ Update-MgDeviceManagementDeviceConfiguration -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -71,7 +71,7 @@ Update-MgDeviceManagementDeviceConfiguration -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssig [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,6 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -DeviceConfigurationAssig [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,7 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -InputObject ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +58,7 @@ Update-MgDeviceManagementDeviceConfigurationAssignment -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-RemediatedDeviceCount ] [-SettingName ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +56,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +66,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary [-ResponseHeaders [-NotApplicableDeviceCount ] [-RemediatedDeviceCount ] [-UnknownDeviceCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDev [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -DeviceConfigurationDev [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +53,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigur [-LastUpdateDateTime ] [-NotApplicableCount ] [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview -DeviceConfigur [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,6 @@ Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -DeviceConfigurationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,6 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +61,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatus -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurat [-LastUpdateDateTime ] [-NotApplicableCount ] [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -DeviceConfigurat -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +52,6 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview [-PendingCount ] [-SuccessCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +62,7 @@ Update-MgDeviceManagementDeviceConfigurationUserStatusOverview -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +50,7 @@ Update-MgDeviceManagementManagedDevice -ManagedDeviceId [-ResponseHeade [-Users ] [-WindowsProtectionState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -60,7 +60,7 @@ Update-MgDeviceManagementManagedDevice -ManagedDeviceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -85,7 +85,7 @@ Update-MgDeviceManagementManagedDevice -InputObject [-Users ] [-WindowsProtectionState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity1 @@ -95,7 +95,6 @@ Update-MgDeviceManagementManagedDevice -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PassThru] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -105,7 +104,7 @@ Update-MgDeviceManagementManagedDevice -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -1488,11 +1487,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. @@ -2188,7 +2190,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 +2228,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 +4244,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 +4450,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 +6045,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. @@ -6745,11 +6791,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. @@ -7445,7 +7494,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 +7532,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 +9548,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 +9754,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 +11535,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. 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId [-DisplayName ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,7 @@ Update-MgDeviceManagementManagedDeviceCategory -ManagedDeviceId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,6 @@ Update-MgDeviceManagementManagedDeviceCategory -InputObject ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgDeviceManagementManagedDeviceCategory -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePol [-SettingStates ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -DeviceCompliancePol [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +51,7 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +61,7 @@ Update-MgDeviceManagementManagedDeviceCompliancePolicyState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationSta [-SettingStates ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -DeviceConfigurationSta [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +51,7 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -InputObject ] [-State ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +61,7 @@ Update-MgDeviceManagementManagedDeviceConfigurationState -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionR [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,6 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -DeviceLogCollectionR [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +53,7 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject ] [-SizeInKb ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgDeviceManagementManagedDeviceLogCollectionRequest -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -ManagedDeviceId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +39,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -ManagedDeviceId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +50,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +60,6 @@ Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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 c036084a832a2..ea330bef0e888 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 @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement/update-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: Update-MgDeviceManagementManagedDeviceWindowsProtectionState --- @@ -36,7 +36,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId ] [-TamperProtectionEnabled] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +46,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState -ManagedDeviceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -66,7 +66,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState [-RebootRequired] [-SignatureUpdateOverdue] [-SignatureVersion ] [-TamperProtectionEnabled] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -77,7 +77,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +43,7 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -60,7 +59,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -71,7 +69,6 @@ Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshooting [-AppLogCollectionRequests ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +38,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -MobileAppTroubleshooting -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +49,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -InputObject ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +59,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEvent -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,6 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,7 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ErrorMessage ] [-Id ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +63,6 @@ Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplat [-RoleScopeTagIds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgDeviceManagementNotificationMessageTemplate -NotificationMessageTemplat -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,6 @@ Update-MgDeviceManagementNotificationMessageTemplate -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgDeviceManagementNotificationMessageTemplate -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-LastModifiedDateTime ] [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +52,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage [-Locale ] [-MessageTemplate ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Update-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEv [-EventDateTime ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +38,6 @@ Update-MgDeviceManagementTroubleshootingEvent -DeviceManagementTroubleshootingEv [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -50,7 +48,6 @@ Update-MgDeviceManagementTroubleshootingEvent -InputObject ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +58,6 @@ Update-MgDeviceManagementTroubleshootingEvent -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ApplicationType ] [-DeviceCount ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +52,7 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ApplicationType ] [-DeviceCount ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +64,6 @@ Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-AdditionalProperties ] [-DeviceCount ] [-Id ] [-Url ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,6 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -51,7 +50,7 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-AdditionalProperties ] [-DeviceCount ] [-Id ] [-Url ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +62,6 @@ Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId [-Id ] [-LastDetectionDateTime ] [-Severity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -WindowsMalwareInformationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -InputObject ] [-LastDetectionDateTime ] [-Severity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgDeviceManagementWindowsMalwareInformation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,7 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +55,6 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState [-ThreatState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +65,7 @@ Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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 7f2d4079ff9da..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 "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" + $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 52498f065e01d..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 = @{} @@ -13,36 +22,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()] @@ -57,7 +36,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") { @@ -65,7 +44,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 } @@ -81,55 +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 - - 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" - if ($graphProfile -eq "beta") { - $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" + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) + } - # 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)" - } + # 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" + } + + # 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 } - 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 . - 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 { @@ -145,10 +124,14 @@ function Get-FolderByProfile { ) $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 - + # 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 = $_ Write-Host $ModuleName @@ -160,107 +143,102 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # 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). + $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) { + 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 + } + 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 + # 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 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" - } - } - } elseif (-not (Test-Path $CmdletDocsPath)) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { 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) { - 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 - } + # 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 } - # 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 + if($CmdletCount -eq 0){ + Remove-Item -LiteralPath $Destination -Force -Recurse } - } - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force @@ -280,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 aeca973f7f228..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 $_"; @@ -136,7 +147,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/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 37be47e7c73df..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 "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" + $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 f7edf3e93bcd6..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" @@ -175,7 +179,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 @@ -201,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