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.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md index 4eb59272b8630..9d518c8b690de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Add-MgCommunicationCallLargeGalleryView.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/add-mgcommunicationcalllargegalleryview Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Add-MgCommunicationCallLargeGalleryView --- @@ -28,7 +28,6 @@ Add-MgCommunicationCallLargeGalleryView -CallId [-ResponseHeadersVariab [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Add @@ -39,7 +38,6 @@ Add-MgCommunicationCallLargeGalleryView -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AddViaIdentityExpanded @@ -49,7 +47,7 @@ Add-MgCommunicationCallLargeGalleryView -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### AddViaIdentity @@ -60,7 +58,6 @@ Add-MgCommunicationCallLargeGalleryView -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,7 +76,7 @@ For details about how to identify a large gallery view participant in a roster s | --------------- | ------------------------------------------ | | Delegated (work or school account) | Not supported | | Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, | +| Application | Calls.JoinGroupCallAsGuest.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md index 4a61e876596f9..26a10ea25ce32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresence --- @@ -29,7 +29,6 @@ Clear-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Clear @@ -40,7 +39,6 @@ Clear-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentityExpanded @@ -51,7 +49,6 @@ Clear-MgCommunicationPresence -InputObject [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -62,7 +59,6 @@ Clear-MgCommunicationPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md index 8e2e1c4f73af8..754f8e3588038 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresenceAutomaticLocation --- @@ -28,7 +28,6 @@ Clear-MgCommunicationPresenceAutomaticLocation -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -38,7 +37,6 @@ Clear-MgCommunicationPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md index ff5bd4bb40929..4c17b97a58ad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresencelocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresenceLocation --- @@ -27,7 +27,6 @@ Clear-MgCommunicationPresenceLocation -PresenceId [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +36,6 @@ Clear-MgCommunicationPresenceLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md index 593b4f609e868..de67af742f53a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgCommunicationPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mgcommunicationpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgCommunicationPresenceUserPreferredPresence --- @@ -27,7 +27,6 @@ Clear-MgCommunicationPresenceUserPreferredPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +36,6 @@ Clear-MgCommunicationPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md index bf42eac6b51e6..4bc2da9ac6fc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresence --- @@ -29,7 +29,6 @@ Clear-MgUserPresence -UserId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Clear @@ -40,7 +39,6 @@ Clear-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentityExpanded @@ -50,7 +48,6 @@ Clear-MgUserPresence -InputObject [-ResponseHeade [-AdditionalProperties ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -61,7 +58,6 @@ Clear-MgUserPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md index bdab99258433e..72ae858b55f31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresenceAutomaticLocation --- @@ -28,7 +28,6 @@ Clear-MgUserPresenceAutomaticLocation -UserId [-ResponseHeadersVariable [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -38,7 +37,6 @@ Clear-MgUserPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +49,20 @@ This cmdlet has the following aliases, Clear the automatic work location signal for a user. After clearing, the user’s final aggregated work location is recomputed according to the precedence rules: Use this operation when you need to remove the current autodetected signal without affecting manual or scheduled layers. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.CloudCommunications + +# A UPN can also be used as -UserId. +Clear-MgUserPresenceAutomaticLocation -UserId $userId + +``` +This example shows how to use the Clear-MgUserPresenceAutomaticLocation Cmdlet. + + ## PARAMETERS ### -Break @@ -406,6 +418,5 @@ INPUTOBJECT ``: Identity Parameter - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md index eb9bc051fe837..2fabfea87913e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresencelocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresenceLocation --- @@ -27,7 +27,6 @@ Clear-MgUserPresenceLocation -UserId [-ResponseHeadersVariable [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +36,6 @@ Clear-MgUserPresenceLocation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +47,20 @@ This cmdlet has the following aliases, Clear the work location signals for a user, including both the manual and automatic layers for the current date. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.CloudCommunications + +# A UPN can also be used as -UserId. +Clear-MgUserPresenceLocation -UserId $userId + +``` +This example shows how to use the Clear-MgUserPresenceLocation Cmdlet. + + ## PARAMETERS ### -Break @@ -404,6 +416,5 @@ INPUTOBJECT ``: Identity Parameter - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md index c38af00450eaa..ba14717a3412f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Clear-MgUserPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/clear-mguserpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Clear-MgUserPresenceUserPreferredPresence --- @@ -27,7 +27,6 @@ Clear-MgUserPresenceUserPreferredPresence -UserId [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ClearViaIdentity @@ -37,7 +36,6 @@ Clear-MgUserPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md index cd860c4482cec..b47dbb4aec4b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCall --- @@ -28,7 +28,7 @@ Get-MgCommunicationAdhocCall [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgCommunicationAdhocCall [-ExpandProperty ] [-Property ] Get-MgCommunicationAdhocCall -AdhocCallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgCommunicationAdhocCall -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md index 01c45ece4b474..2680c52912b57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationAdhocCallCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md index e110f79c2ba0a..445153307b780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecording --- @@ -29,7 +29,7 @@ Get-MgCommunicationAdhocCallRecording [-ExpandProperty ] [-Property ] [-Top ] [-UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -40,7 +40,7 @@ Get-MgCommunicationAdhocCallRecording -AdhocCallId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -50,7 +50,7 @@ Get-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -60,7 +60,7 @@ Get-MgCommunicationAdhocCallRecording -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md index 33380523da91c..e77efb1ead508 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecordingContent --- @@ -27,7 +27,7 @@ Read-only. Get-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecordingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecordin Get-MgCommunicationAdhocCallRecordingContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md index 978cafb29ca6f..016c01974abc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecordingCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationAdhocCallRecordingCount -AdhocCallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationAdhocCallRecordingCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md index 7d2a375761890..2bf924f3a957b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallRecordingDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccallrecordingdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallRecordingDelta --- @@ -28,7 +28,7 @@ Get-MgCommunicationAdhocCallRecordingDelta -AdhocCallId [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -39,7 +39,7 @@ Get-MgCommunicationAdhocCallRecordingDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md index 8ba17dc060d60..9074eefdc39dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscript --- @@ -29,7 +29,7 @@ Get-MgCommunicationAdhocCallTranscript [-ExpandProperty ] [-Property < [-StartDateTime ] [-Top ] [-UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -40,7 +40,7 @@ Get-MgCommunicationAdhocCallTranscript -AdhocCallId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -50,7 +50,7 @@ Get-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptId < [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -60,7 +60,7 @@ Get-MgCommunicationAdhocCallTranscript -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md index 91ec84a1e3c1d..1f7fe1252588b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptContent --- @@ -27,7 +27,7 @@ Read-only. Get-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTranscriptId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTranscr Get-MgCommunicationAdhocCallTranscriptContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md index 18d0b1926a0fb..b9d44d0ac3e6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationAdhocCallTranscriptCount -AdhocCallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationAdhocCallTranscriptCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md index b5ea41693cdde..298d97af81d0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptDelta --- @@ -28,7 +28,7 @@ Get-MgCommunicationAdhocCallTranscriptDelta -AdhocCallId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### DeltaViaIdentity @@ -39,7 +39,7 @@ Get-MgCommunicationAdhocCallTranscriptDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md index c814ec93d82c7..7be1672e96d9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationadhoccalltranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationAdhocCallTranscriptMetadataContent --- @@ -28,7 +28,7 @@ Get-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId -CallTranscriptId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId Get-MgCommunicationAdhocCallTranscriptMetadataContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md index e589432122f31..618dfb544712e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCall --- @@ -26,7 +26,7 @@ Retrieve the properties and relationships of a call object. Get-MgCommunicationCall -CallId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgCommunicationCall -CallId [-ExpandProperty ] [-Property Get-MgCommunicationCall -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md index 12cb9f0ee2bfa..0a8a6670d6f47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallAudioRoutingGroup --- @@ -28,7 +28,7 @@ Get-MgCommunicationCallAudioRoutingGroup -CallId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallId < [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgCommunicationCallAudioRoutingGroup -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md index 3aec86d4b748f..94a207206744d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallAudioRoutingGroupCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallaudioroutinggroupcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallAudioRoutingGroupCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallAudioRoutingGroupCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationCallAudioRoutingGroupCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md index 6134b88525666..219b840e50493 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallContentSharingSession --- @@ -28,7 +28,7 @@ Get-MgCommunicationCallContentSharingSession -CallId [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgCommunicationCallContentSharingSession -CallId -ContentSharingSes [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgCommunicationCallContentSharingSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -66,7 +66,7 @@ Retrieve the properties of a contentSharingSession object in a call. | --------------- | ------------------------------------------ | | Delegated (work or school account) | Not supported | | Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, Calls.Initiate.All, | +| Application | Calls.JoinGroupCallAsGuest.All, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | ## EXAMPLES ### Example 1: Code snippet diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md index 03115651c612e..ac4ead3c391aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallContentSharingSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcontentsharingsessioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallContentSharingSessionCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallContentSharingSessionCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationCallContentSharingSessionCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,7 +54,7 @@ Get the number of the resource | --------------- | ------------------------------------------ | | Delegated (work or school account) | Not supported | | Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, Calls.Initiate.All, | +| Application | Calls.JoinGroupCallAsGuest.All, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, | ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md index c8e46ec865911..478bd3002ee3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md index 48e14473b38e4..b9e78c4c799bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallOperation --- @@ -28,7 +28,7 @@ Get-MgCommunicationCallOperation -CallId [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgCommunicationCallOperation -CallId -CommsOperationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgCommunicationCallOperation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md index 3ac161392ec93..67b5eb557d36c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallOperationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcalloperationcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallOperationCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallOperationCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgCommunicationCallOperationCount -CallId [-Filter ] [-Sear Get-MgCommunicationCallOperationCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md index d286ec1dbf7f0..a49771b336720 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallParticipant --- @@ -28,7 +28,7 @@ Get-MgCommunicationCallParticipant -CallId [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgCommunicationCallParticipant -CallId -ParticipantId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgCommunicationCallParticipant -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md index 97591d5ceee2e..cf600d5ccc7ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallParticipantCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallparticipantcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallParticipantCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallParticipantCount -CallId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationCallParticipantCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md index 80aa9f1d7f300..d854463dba393 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecord --- @@ -28,7 +28,7 @@ The call record is available only after the associated call is completed. Get-MgCommunicationCallRecord -CallRecordId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationCallRecord -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md index ddc418142bf0c..692e5e8e97e58 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallRecordCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md index 3cab8406509c2..9e55a656fd2e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordOrganizerV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordorganizerv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordOrganizerV2 --- @@ -27,7 +27,7 @@ This relationship is expanded by default in callRecord methods. Get-MgCommunicationCallRecordOrganizerV2 -CallRecordId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationCallRecordOrganizerV2 -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md index 20121c5ea90bf..43ce508180dde 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordParticipant --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallRecordParticipant -CallRecordId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationCallRecordParticipant -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md index d94b2ebfb8388..6d13aca0b2967 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordParticipantV2 --- @@ -28,7 +28,7 @@ Get-MgCommunicationCallRecordParticipantV2 -CallRecordId [-ExpandProper [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgCommunicationCallRecordParticipantV2 -CallRecordId -ParticipantId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgCommunicationCallRecordParticipantV2 -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md index 451627cddc387..594970c045389 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordSession --- @@ -31,7 +31,7 @@ Get-MgCommunicationCallRecordSession -CallRecordId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +41,7 @@ Get-MgCommunicationCallRecordSession -CallRecordId -SessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +51,7 @@ Get-MgCommunicationCallRecordSession -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md index f5989b8633b20..56b08b46d53ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordSessionCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationCallRecordSessionCount -CallRecordId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationCallRecordSessionCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md index 2546b322409df..0e1da61b7c0c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationCallRecordSessionSegmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationcallrecordsessionsegmentcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationCallRecordSessionSegmentCount --- @@ -27,7 +27,7 @@ Get-MgCommunicationCallRecordSessionSegmentCount -CallRecordId -Session [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationCallRecordSessionSegmentCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md index 8028b468aad57..40e736e053d00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeeting --- @@ -29,7 +29,6 @@ Get-MgCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-StartDateTime ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +38,6 @@ Get-MgCommunicationOnlineMeeting -OnlineMeetingId [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentity @@ -49,7 +47,7 @@ Get-MgCommunicationOnlineMeeting -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### List @@ -60,7 +58,7 @@ Get-MgCommunicationOnlineMeeting [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [-WhatIf] [-Confirm] [] + [-CountVariable ] [-WhatIf] [-Confirm] ``` ### Get1 @@ -71,7 +69,6 @@ Get-MgCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md index 1186f11a124a8..a680499739023 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReport --- @@ -30,7 +30,6 @@ Get-MgCommunicationOnlineMeetingAttendanceReport -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +39,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +49,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 5db580640ed36..d8661ede76c1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -30,7 +30,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttenda [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceReco -MeetingAttendanceReportId -OnlineMeetingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md index bbcdf0011c154..03aed74324d92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportattendancerecordcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount -MeetingAttendanceReportId -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md index a14cf9ef0ebe9..9e7a401441773 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendanceReportCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendancereportcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendanceReportCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingAttendanceReportCount -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationOnlineMeetingAttendanceReportCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md index b4195fb739dde..123a55dc52681 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingAttendeeReport --- @@ -27,7 +27,7 @@ Read-only. Get-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId -OutFil Get-MgCommunicationOnlineMeetingAttendeeReport -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md index b5294b66268c7..ac44f1bc5145b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversation --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingConversation [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversatio [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgCommunicationOnlineMeetingConversation -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md index e07c1a571048d..de0303f6a1957 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingConversationCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md index a72f192a71e1f..34ffaae0910a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessage --- @@ -29,7 +29,6 @@ Get-MgCommunicationOnlineMeetingConversationMessage -OnlineMeetingEngagementConv [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMessa -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +48,7 @@ Get-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md index ff9d984caea71..822d23eb8f0af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessageconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageConversation --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageConversation [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +39,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md index 4a15f1a0495ad..fc8fffedf6edf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagecount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageCount --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md index c97e76bd9426a..015fcf1679780 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -30,7 +30,6 @@ Get-MgCommunicationOnlineMeetingConversationMessageReaction [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +40,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReaction -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +50,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,6 +62,19 @@ This cmdlet has the following aliases, A collection of reactions (such as like and smile) that users have applied to this message. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.CloudCommunications + +Get-MgCommunicationOnlineMeetingConversationMessageReaction -OnlineMeetingEngagementConversationId $onlineMeetingEngagementConversationId -EngagementConversationMessageId $engagementConversationMessageId + +``` +This example shows how to use the Get-MgCommunicationOnlineMeetingConversationMessageReaction Cmdlet. + + ## PARAMETERS ### -All @@ -622,8 +634,6 @@ INPUTOBJECT ``: Identity Parameter - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md index 029856f69cef0..4f7154c1bb8c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReactionCount --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReactionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReactionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md index 5f9d9b845fbc8..15276179aba55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReply -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md index 1efd4150cb32e..4d2dfdb05b285 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +39,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md index c4e2bd81b52f8..66510b8bcb861 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplycount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyCount --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 07f953355fba2..6ebb7d36003be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -30,7 +30,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -42,7 +42,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -52,7 +52,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md index dbf93666cc7ea..96b1d324e1969 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyreactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyReactionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md index 3634ca8cc54df..173177a061237 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationMessageReplyTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationmessagereplyto Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationMessageReplyTo --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -EngagementConversati -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get1 @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -EngagementConversati [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity1 @@ -48,7 +48,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -58,7 +58,7 @@ Get-MgCommunicationOnlineMeetingConversationMessageReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md index d0e47139b718c..e07d7c154bf85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationOnlineMeeting --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeeting -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeeting -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 1d63fe4b72a47..71c3c210e6d08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport -OnlineMeetingEngagementConversationId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md index a44533401d551..62551e7b15285 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarter Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarter --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationStarter -OnlineMeetingEngagementConv [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationStarter -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md index dfd1abe85226a..b1aa4be4642d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterConversation --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterConversation -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md index eb10924ad9b13..2eefaff2c3cdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReaction [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md index 00c3149ea745b..26784810c3215 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReactionCount --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReactionCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReactionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md index 08f5f68c885c1..0b5adf42c2619 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReply [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReply -EngagementConversation -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReply -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md index 12a741dfa3b4b..eb8930d782378 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +39,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyConversation -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md index aa8b4ed273c54..b08d80ddf1e78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplycount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyCount --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyCount -OnlineMeetingEngagementConversationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 517c37e0d9d98..0bce7360f268a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -30,7 +30,6 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +40,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +50,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReaction -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md index 6c5ba44c792db..1251d8e842590 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyreactioncount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyReactionCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md index edea9a9da0cce..ea21394acf6c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingConversationStarterReplyTo.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingconversationstarterreplyto Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingConversationStarterReplyTo --- @@ -27,7 +27,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo -OnlineMeetingEngagementConversationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get1 @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity1 @@ -48,7 +48,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -58,7 +58,7 @@ Get-MgCommunicationOnlineMeetingConversationStarterReplyTo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md index 01183714cef4d..0319aec01cce1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md index 179814b8c8290..2cc82280f4a0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingMessage --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingMessage [-Count] [-ExpandProperty ] [- [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -43,6 +43,19 @@ Get all Teams question and answer (Q&A) conversation messages in a tenant. This function returns a snapshot of all Q&A activity in JSON format. The export includes:\r- The original question or discussion text\r- The user who posted the message\r- All replies and responders\r- Vote counts\r- Moderation status (pending or dismissed)\r- Private replies\r- The meeting ID and organizer ID that are used for mapping to meeting metadata. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.CloudCommunications + +Get-MgCommunicationOnlineMeetingMessage -ExpandProperty "conversation" + +``` +This example shows how to use the Get-MgCommunicationOnlineMeetingMessage Cmdlet. + + ## PARAMETERS ### -Break @@ -431,6 +444,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md index e6a099ea238d4..6706409bdd564 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecording --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingRecording [-ExpandProperty ] [-Propert [-Search ] [-Skip ] [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get @@ -39,7 +39,7 @@ Get-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMeeti [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -50,7 +50,7 @@ Get-MgCommunicationOnlineMeetingRecording -OnlineMeetingId [-ExpandProp [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### GetViaIdentity @@ -60,7 +60,7 @@ Get-MgCommunicationOnlineMeetingRecording -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md index 086bd3af538d7..4bdae77f7dec8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecordingContent --- @@ -27,7 +27,7 @@ Read-only. Get-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId -OnlineMeetingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId -Onli Get-MgCommunicationOnlineMeetingRecordingContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md index 6f6ad6c1c18cd..6b8c01945ccc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecordingCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingRecordingCount -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationOnlineMeetingRecordingCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md index 43f17f5747bc9..6c5250e780a26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingRecordingDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingrecordingdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingRecordingDelta --- @@ -29,7 +29,6 @@ Get-MgCommunicationOnlineMeetingRecordingDelta -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +39,7 @@ Get-MgCommunicationOnlineMeetingRecordingDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md index 7a55a63e825bd..af5a31e9bf90f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscript --- @@ -29,7 +29,7 @@ Get-MgCommunicationOnlineMeetingTranscript [-ExpandProperty ] [-Proper [-Search ] [-Skip ] [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### Get @@ -39,7 +39,7 @@ Get-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -OnlineMee [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### List @@ -50,7 +50,7 @@ Get-MgCommunicationOnlineMeetingTranscript -OnlineMeetingId [-ExpandPro [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### GetViaIdentity @@ -60,7 +60,7 @@ Get-MgCommunicationOnlineMeetingTranscript -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md index a60803aa0ea14..ff260031976c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptContent --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeetingId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId Get-MgCommunicationOnlineMeetingTranscriptContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md index 48958c6b768bf..53390922fd237 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationOnlineMeetingTranscriptCount -OnlineMeetingId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgCommunicationOnlineMeetingTranscriptCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md index 67561b723a523..775c8503a316b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptDelta --- @@ -29,7 +29,6 @@ Get-MgCommunicationOnlineMeetingTranscriptDelta -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +39,7 @@ Get-MgCommunicationOnlineMeetingTranscriptDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 821b2373075a5..7fbff43566bba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingTranscriptMetadataContent --- @@ -28,7 +28,7 @@ Get-MgCommunicationOnlineMeetingTranscriptMetadataContent -CallTranscriptId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingTranscriptMetadataContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md index 363c2eedd799e..9a9c70c032cdd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationonlinemeetingvirtualappointmentjoinweburl Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl --- @@ -28,7 +28,7 @@ With Teams Premium, you can configure a custom lobby room experience for attende Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl -OnlineMeetingId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md index d998574ac59c2..a38c225ce4afd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationPresence --- @@ -28,7 +28,7 @@ Get-MgCommunicationPresence [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgCommunicationPresence [-ExpandProperty ] [-Property ] Get-MgCommunicationPresence -PresenceId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +46,7 @@ Get-MgCommunicationPresence -PresenceId [-ExpandProperty ] [- Get-MgCommunicationPresence -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md index 4491cae69fbb1..835bfcb2978ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceByUserId.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencebyuserid Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationPresenceByUserId --- @@ -27,7 +27,6 @@ Get-MgCommunicationPresenceByUserId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Ids ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -38,7 +37,6 @@ Get-MgCommunicationPresenceByUserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md index a5369afbe4b13..648f5c70de929 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgCommunicationPresenceCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mgcommunicationpresencecount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgCommunicationPresenceCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgCommunicationPresenceCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md index 5d6cad2c116aa..fa497ac23d2c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeeting --- @@ -29,7 +29,6 @@ Get-MgUserOnlineMeeting -UserId [-ResponseHeadersVariable ] [-StartDateTime ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Get @@ -39,7 +38,6 @@ Get-MgUserOnlineMeeting -OnlineMeetingId -UserId [-ExpandPrope [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### List @@ -50,7 +48,7 @@ Get-MgUserOnlineMeeting -UserId [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [-WhatIf] [-Confirm] [] + [-CountVariable ] [-WhatIf] [-Confirm] ``` ### Get1 @@ -61,7 +59,6 @@ Get-MgUserOnlineMeeting -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentityExpanded @@ -73,7 +70,7 @@ Get-MgUserOnlineMeeting -InputObject [-Participants ] [-StartDateTime ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### GetViaIdentity1 @@ -84,7 +81,6 @@ Get-MgUserOnlineMeeting -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### GetViaIdentity @@ -94,7 +90,6 @@ Get-MgUserOnlineMeeting -InputObject [-ExpandProp [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md index f3ea784be7eec..15f4a8b68ad15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReport --- @@ -30,7 +30,6 @@ Get-MgUserOnlineMeetingAttendanceReport -OnlineMeetingId -UserId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +39,7 @@ Get-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId -OnlineMeetingId -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +49,7 @@ Get-MgUserOnlineMeetingAttendanceReport -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index f72fdcee8607e..9fcc452e0e6a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -30,7 +30,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttendanceReport [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -41,7 +41,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +51,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md index 367ba5d24da98..a5c0f9d9a739c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportattendancerecordcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount --- @@ -27,7 +27,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount -MeetingAttendanceR -OnlineMeetingId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md index 95e8f74c3418a..6f4d08ac7b9d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendanceReportCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendancereportcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendanceReportCount --- @@ -27,7 +27,7 @@ Get-MgUserOnlineMeetingAttendanceReportCount -OnlineMeetingId -UserId < [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgUserOnlineMeetingAttendanceReportCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md index c01bfbf8abe2f..5a32883aa84a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingAttendeeReport --- @@ -27,7 +27,7 @@ Read-only. Get-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId Get-MgUserOnlineMeetingAttendeeReport -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md index b07da9ee6fc8e..ee50117ca7910 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgUserOnlineMeetingCount -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgUserOnlineMeetingCount -UserId [-Filter ] [-Search [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md index 031becb26257f..32c20310283c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecording --- @@ -32,7 +32,7 @@ Get-MgUserOnlineMeetingRecording -UserId [-ExpandProperty ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### Get @@ -42,7 +42,7 @@ Get-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### List @@ -54,7 +54,6 @@ Get-MgUserOnlineMeetingRecording -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### GetViaIdentity1 @@ -66,7 +65,7 @@ Get-MgUserOnlineMeetingRecording -InputObject [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -76,7 +75,7 @@ Get-MgUserOnlineMeetingRecording -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md index 593ef4c5faed8..31468ea56ffba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecordingContent --- @@ -28,7 +28,7 @@ Get-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeeting -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeeting Get-MgUserOnlineMeetingRecordingContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md index cdc3b14080e5f..703ce9e69cda5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecordingCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgUserOnlineMeetingRecordingCount -OnlineMeetingId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgUserOnlineMeetingRecordingCount -OnlineMeetingId -UserId Get-MgUserOnlineMeetingRecordingCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md index d67361934953e..376cedb42dc97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingRecordingDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingrecordingdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingRecordingDelta --- @@ -29,7 +29,6 @@ Get-MgUserOnlineMeetingRecordingDelta -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +39,7 @@ Get-MgUserOnlineMeetingRecordingDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md index 11e2a7f57bb02..8eaa49f06c833 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscript --- @@ -32,7 +32,7 @@ Get-MgUserOnlineMeetingTranscript -UserId [-ExpandProperty ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### Get @@ -42,7 +42,7 @@ Get-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### List @@ -54,7 +54,6 @@ Get-MgUserOnlineMeetingTranscript -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### GetViaIdentity1 @@ -66,7 +65,7 @@ Get-MgUserOnlineMeetingTranscript -InputObject [-Sort ] [-StartDateTime ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -76,7 +75,7 @@ Get-MgUserOnlineMeetingTranscript -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md index 41ff685646264..15e8fa5f95c35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptContent --- @@ -30,7 +30,7 @@ Get-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeeti -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +39,7 @@ Get-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeeti Get-MgUserOnlineMeetingTranscriptContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md index d62fece7e7029..ca4f52b6dadb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptcount Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptCount --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgUserOnlineMeetingTranscriptCount -OnlineMeetingId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +36,7 @@ Get-MgUserOnlineMeetingTranscriptCount -InputObject ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md index 832664272653d..29de70f2bafbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptDelta.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptdelta Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptDelta --- @@ -29,7 +29,6 @@ Get-MgUserOnlineMeetingTranscriptDelta -OnlineMeetingId -UserId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### DeltaViaIdentity @@ -40,7 +39,7 @@ Get-MgUserOnlineMeetingTranscriptDelta -InputObject ] [-Sort ] [-Top ] [-Count] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md index e35a7f147d402..c503e52e77685 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingTranscriptMetadataContent --- @@ -30,7 +30,7 @@ Get-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId -OnlineMeetingId -UserId -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -39,7 +39,7 @@ Get-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId Get-MgUserOnlineMeetingTranscriptMetadataContent -InputObject -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] - [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md index 257fdfda33edc..357470a83b8a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguseronlinemeetingvirtualappointmentjoinweburl Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl --- @@ -28,7 +28,7 @@ With Teams Premium, you can configure a custom lobby room experience for attende Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -OnlineMeetingId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -OnlineMeetingId -U Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -55,7 +55,7 @@ With Teams Premium, you can configure a custom lobby room experience for attende | Permission type | Permissions (from least to most privileged) | | --------------- | ------------------------------------------ | -| Delegated (work or school account) | VirtualAppointment.Read, VirtualAppointment.ReadWrite, OnlineMeetings.ReadWrite, OnlineMeetings.Read, | +| Delegated (work or school account) | VirtualAppointment.Read, OnlineMeetings.Read, OnlineMeetings.ReadWrite, VirtualAppointment.ReadWrite, | | Delegated (personal Microsoft account) | Not supported | | Application | VirtualAppointment.Read.All, VirtualAppointment.ReadWrite.All, | diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md index c3506789cd57f..60b8f12ecff6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Get-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/get-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserPresence --- @@ -26,7 +26,7 @@ Get a user's presence information. Get-MgUserPresence -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgUserPresence -UserId [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md index 1e5ed38aae498..94d8569aa8cfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgAnswerCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mganswercommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgAnswerCommunicationCall --- @@ -34,7 +34,6 @@ Invoke-MgAnswerCommunicationCall -CallId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Answer @@ -45,7 +44,6 @@ Invoke-MgAnswerCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AnswerViaIdentityExpanded @@ -57,7 +55,6 @@ Invoke-MgAnswerCommunicationCall -InputObject [-MediaConfig ] [-ParticipantCapacity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AnswerViaIdentity @@ -68,7 +65,6 @@ Invoke-MgAnswerCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md index 6767fc27dbf7c..5fa5ac84e8760 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgCreateOrGetCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgcreateorgetcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgCreateOrGetCommunicationOnlineMeeting --- @@ -30,7 +30,6 @@ Invoke-MgCreateOrGetCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-Subject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create1 @@ -41,7 +40,6 @@ Invoke-MgCreateOrGetCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md index 6782c9ecc1175..41e7f63b41ba2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgInviteCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mginvitecommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgInviteCommunicationCallParticipant --- @@ -32,7 +32,6 @@ Invoke-MgInviteCommunicationCallParticipant -CallId [-ResponseHeadersVa [-Participants ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Invite @@ -43,7 +42,6 @@ Invoke-MgInviteCommunicationCallParticipant -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InviteViaIdentityExpanded @@ -54,7 +52,6 @@ Invoke-MgInviteCommunicationCallParticipant -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### InviteViaIdentity @@ -65,7 +62,6 @@ Invoke-MgInviteCommunicationCallParticipant -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md index 15d9bedc1cc5d..1295b9c977bd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgKeepCommunicationCallAlive.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgkeepcommunicationcallalive Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgKeepCommunicationCallAlive --- @@ -33,7 +33,6 @@ Invoke-MgKeepCommunicationCallAlive -CallId [-ResponseHeadersVariable < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### KeepViaIdentity @@ -43,7 +42,6 @@ Invoke-MgKeepCommunicationCallAlive -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md index 21bd58e61ae17..a56e54492a9ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mglogcommunicationcallteleconferencedevicequality Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality --- @@ -34,7 +34,6 @@ Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality [-ResponseHeadersVariab [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Log @@ -45,7 +44,6 @@ Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md index 00863bcfeb114..a6ca1aabcc8ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgMuteCommunicationCall --- @@ -29,7 +29,6 @@ Invoke-MgMuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Mute @@ -40,7 +39,6 @@ Invoke-MgMuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### MuteViaIdentityExpanded @@ -50,7 +48,7 @@ Invoke-MgMuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### MuteViaIdentity @@ -61,7 +59,6 @@ Invoke-MgMuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md index 9abca031632bc..f3f8d1704adf2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgMuteCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgmutecommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgMuteCommunicationCallParticipant --- @@ -29,7 +29,7 @@ Invoke-MgMuteCommunicationCallParticipant -CallId -ParticipantId ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Mute @@ -40,7 +40,6 @@ Invoke-MgMuteCommunicationCallParticipant -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### MuteViaIdentityExpanded @@ -50,7 +49,7 @@ Invoke-MgMuteCommunicationCallParticipant -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### MuteViaIdentity @@ -61,7 +60,6 @@ Invoke-MgMuteCommunicationCallParticipant -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md index b944c67e01c8b..015317ec17ee9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgPlayCommunicationCallPrompt.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgplaycommunicationcallprompt Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgPlayCommunicationCallPrompt --- @@ -28,7 +28,7 @@ Invoke-MgPlayCommunicationCallPrompt -CallId [-ResponseHeadersVariable [-AdditionalProperties ] [-ClientContext ] [-Prompts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Play @@ -39,7 +39,6 @@ Invoke-MgPlayCommunicationCallPrompt -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PlayViaIdentityExpanded @@ -50,7 +49,6 @@ Invoke-MgPlayCommunicationCallPrompt -InputObject [-Prompts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### PlayViaIdentity @@ -61,7 +59,6 @@ Invoke-MgPlayCommunicationCallPrompt -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md index 9f90fd18d3e39..ea9a7c8a806bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRecordCommunicationCallResponse.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrecordcommunicationcallresponse Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRecordCommunicationCallResponse --- @@ -33,7 +33,7 @@ Invoke-MgRecordCommunicationCallResponse -CallId [-ResponseHeadersVaria [-MaxSilenceTimeoutInSeconds ] [-PlayBeep] [-Prompts ] [-StopTones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Record @@ -44,7 +44,6 @@ Invoke-MgRecordCommunicationCallResponse -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RecordViaIdentityExpanded @@ -57,7 +56,6 @@ Invoke-MgRecordCommunicationCallResponse -InputObject ] [-StopTones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RecordViaIdentity @@ -68,7 +66,6 @@ Invoke-MgRecordCommunicationCallResponse -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md index b200e4f038b71..105e4c86c2fd0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRedirectCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgredirectcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRedirectCommunicationCall --- @@ -32,7 +32,6 @@ Invoke-MgRedirectCommunicationCall -CallId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Redirect @@ -43,7 +42,6 @@ Invoke-MgRedirectCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RedirectViaIdentityExpanded @@ -55,7 +53,6 @@ Invoke-MgRedirectCommunicationCall -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RedirectViaIdentity @@ -66,7 +63,6 @@ Invoke-MgRedirectCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md index 27d19d557d651..422054c8a1e0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgRejectCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgrejectcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRejectCommunicationCall --- @@ -34,7 +34,6 @@ Invoke-MgRejectCommunicationCall -CallId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Reject @@ -45,7 +44,6 @@ Invoke-MgRejectCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RejectViaIdentityExpanded @@ -56,7 +54,6 @@ Invoke-MgRejectCommunicationCall -InputObject [-Reason ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RejectViaIdentity @@ -67,7 +64,6 @@ Invoke-MgRejectCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md index 2091e58d65aff..474976835108c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgSubscribeCommunicationCallToTone.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgsubscribecommunicationcalltotone Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgSubscribeCommunicationCallToTone --- @@ -27,7 +27,6 @@ Invoke-MgSubscribeCommunicationCallToTone -CallId [-ResponseHeadersVari [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Subscribe @@ -38,7 +37,6 @@ Invoke-MgSubscribeCommunicationCallToTone -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SubscribeViaIdentityExpanded @@ -48,7 +46,7 @@ Invoke-MgSubscribeCommunicationCallToTone -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SubscribeViaIdentity @@ -59,7 +57,6 @@ Invoke-MgSubscribeCommunicationCallToTone -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md index 57508e7867e26..cc7aeb6953020 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Invoke-MgUnmuteCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/invoke-mgunmutecommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgUnmuteCommunicationCall --- @@ -29,7 +29,6 @@ Invoke-MgUnmuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Unmute @@ -40,7 +39,6 @@ Invoke-MgUnmuteCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UnmuteViaIdentityExpanded @@ -50,7 +48,7 @@ Invoke-MgUnmuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UnmuteViaIdentity @@ -61,7 +59,6 @@ Invoke-MgUnmuteCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md index c44c4fe390cd9..5544f55a6f5be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Microsoft.Graph.CloudCommunications.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.CloudCommunications -Module Guid: 012a59be-7ca3-48ae-9a18-af8295c52773 +Module Guid: 1461b613-afd8-4ced-9526-a15da0920c52 Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.cloudcommunications/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md index becb16eac486e..7e85dd4de1420 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Move-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/move-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Move-MgCommunicationCall --- @@ -30,7 +30,6 @@ Move-MgCommunicationCall -CallId [-ResponseHeadersVariable ] [-Transferee ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Transfer @@ -41,7 +40,6 @@ Move-MgCommunicationCall -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### TransferViaIdentityExpanded @@ -53,7 +51,6 @@ Move-MgCommunicationCall -InputObject [-Transferee ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### TransferViaIdentity @@ -64,7 +61,6 @@ Move-MgCommunicationCall -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md index de02b3cb88028..60c72515cd7f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationAdhocCall --- @@ -28,7 +28,6 @@ New-MgCommunicationAdhocCall [-ResponseHeadersVariable ] [-AdditionalPro [-Transcripts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgCommunicationAdhocCall -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md index 1065de9e27905..e1f659b9bd839 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationAdhocCallRecording --- @@ -30,7 +30,6 @@ New-MgCommunicationAdhocCallRecording -AdhocCallId [-ResponseHeadersVar [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,7 @@ New-MgCommunicationAdhocCallRecording -AdhocCallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +52,7 @@ New-MgCommunicationAdhocCallRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +62,7 @@ New-MgCommunicationAdhocCallRecording -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.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md index 468db2d450c59..5a8c8111b9bf6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationAdhocCallTranscript --- @@ -30,7 +30,7 @@ New-MgCommunicationAdhocCallTranscript -AdhocCallId [-ResponseHeadersVa [-MetadataContentInputFile ] [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgCommunicationAdhocCallTranscript -AdhocCallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -54,7 +54,6 @@ New-MgCommunicationAdhocCallTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -64,7 +63,7 @@ New-MgCommunicationAdhocCallTranscript -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.CloudCommunications/New-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md index b2ea687905baf..fc9b1c7c3e1b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCall --- @@ -40,7 +40,6 @@ New-MgCommunicationCall [-ResponseHeadersVariable ] [-AdditionalProperti [-Transcription ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -49,7 +48,7 @@ New-MgCommunicationCall [-ResponseHeadersVariable ] [-AdditionalProperti New-MgCommunicationCall -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -69,7 +68,7 @@ This API supports the following PSTN scenarios: | --------------- | ------------------------------------------ | | Delegated (work or school account) | Not supported | | Delegated (personal Microsoft account) | Not supported | -| Application | Calls.JoinGroupCalls.Chat, Calls.JoinGroupCallAsGuest.All, Calls.JoinGroupCall.All, Calls.InitiateGroupCall.All, Calls.Initiate.All, | +| Application | Calls.JoinGroupCalls.Chat, Calls.Initiate.All, Calls.InitiateGroupCall.All, Calls.JoinGroupCall.All, Calls.JoinGroupCallAsGuest.All, | ## EXAMPLES ### Example 1: Create peer-to-peer VoIP call with service hosted media diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md index 692afd743f116..df4afa9da2d57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallAudioRoutingGroup --- @@ -27,7 +27,7 @@ New-MgCommunicationCallAudioRoutingGroup -CallId [-ResponseHeadersVaria [-AdditionalProperties ] [-Id ] [-Receivers ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +37,7 @@ New-MgCommunicationCallAudioRoutingGroup -CallId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +48,7 @@ New-MgCommunicationCallAudioRoutingGroup -InputObject ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -58,7 +58,7 @@ New-MgCommunicationCallAudioRoutingGroup -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.CloudCommunications/New-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md index 83c945df0ccf7..e19970770d668 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallContentSharingSession --- @@ -27,7 +27,6 @@ New-MgCommunicationCallContentSharingSession -CallId [-ResponseHeadersV [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -37,7 +36,6 @@ New-MgCommunicationCallContentSharingSession -CallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -47,7 +45,7 @@ New-MgCommunicationCallContentSharingSession -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -57,7 +55,6 @@ New-MgCommunicationCallContentSharingSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md index 5553eb7f28acd..6435fe8713528 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallOperation --- @@ -28,7 +28,6 @@ New-MgCommunicationCallOperation -CallId [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -38,7 +37,6 @@ New-MgCommunicationCallOperation -CallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -49,7 +47,7 @@ New-MgCommunicationCallOperation -InputObject [-Id ] [-ResultInfo ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -59,7 +57,7 @@ New-MgCommunicationCallOperation -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.CloudCommunications/New-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md index 28a50daddda70..95fe1b239b443 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallParticipant --- @@ -30,7 +30,7 @@ New-MgCommunicationCallParticipant -CallId [-ResponseHeadersVariable ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgCommunicationCallParticipant -CallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +53,7 @@ New-MgCommunicationCallParticipant -InputObject [-RestrictedExperience ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -64,7 +63,7 @@ New-MgCommunicationCallParticipant -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.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md index 1846f8cb5f7dd..5b35cc7addd71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallRecordParticipantV2 --- @@ -29,7 +29,6 @@ New-MgCommunicationCallRecordParticipantV2 -CallRecordId [-Identity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +38,6 @@ New-MgCommunicationCallRecordParticipantV2 -CallRecordId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +49,6 @@ New-MgCommunicationCallRecordParticipantV2 -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -61,7 +58,6 @@ New-MgCommunicationCallRecordParticipantV2 -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md index 609791b4fb6f7..76347b5821aee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationCallRecordSession --- @@ -31,7 +31,6 @@ New-MgCommunicationCallRecordSession -CallRecordId [-ResponseHeadersVar [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +40,7 @@ New-MgCommunicationCallRecordSession -CallRecordId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +54,6 @@ New-MgCommunicationCallRecordSession -InputObject [-StartDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +63,7 @@ New-MgCommunicationCallRecordSession -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.CloudCommunications/New-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md index 06d8813603d95..919e3dd39f1e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeeting --- @@ -47,7 +47,6 @@ New-MgCommunicationOnlineMeeting [-ResponseHeadersVariable ] [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -57,7 +56,6 @@ New-MgCommunicationOnlineMeeting -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md index edc7af52420e3..096756cfd30cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingAttendanceReport --- @@ -30,7 +30,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -OnlineMeetingId [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +53,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +63,7 @@ New-MgCommunicationOnlineMeetingAttendanceReport -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.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index f82b6e9130c95..11c7081f2cf2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -31,7 +31,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttenda [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +41,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttenda [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +55,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -68,7 +65,6 @@ New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md index d2b0fed30d555..98988a2a5d52d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversation --- @@ -32,7 +32,7 @@ New-MgCommunicationOnlineMeetingConversation [-ResponseHeadersVariable ] [-Starter ] [-StarterId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -43,7 +43,6 @@ New-MgCommunicationOnlineMeetingConversation [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md index a8119bd74205f..b7ffb041ec442 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessage --- @@ -32,7 +32,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -OnlineMeetingEngagementConv [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +42,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -OnlineMeetingEngagementConv -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -57,7 +57,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -67,7 +67,7 @@ New-MgCommunicationOnlineMeetingConversationMessage -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.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md index 5346beb7b3de1..80456e75070be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -30,7 +30,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +41,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +53,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +64,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md index 03dd94b3f4d20..4ba65323263c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -33,7 +33,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +44,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -EngagementConversation -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -59,7 +59,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -69,7 +69,7 @@ New-MgCommunicationOnlineMeetingConversationMessageReply -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.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index aaaca6f8c3c43..f6eab852595bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -31,7 +31,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -44,7 +43,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +55,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -69,7 +66,6 @@ New-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md index 39e1b0b1fd1fe..4e7de393a42fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -30,7 +30,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +41,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +53,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +64,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md index eaddbc4dfc2a5..9f08741b62049 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -33,7 +33,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -44,7 +44,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -59,7 +59,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -69,7 +69,7 @@ New-MgCommunicationOnlineMeetingConversationStarterReply -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.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 7129c92befe0c..6aaa21719dbb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -30,7 +30,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +41,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -55,7 +53,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +64,6 @@ New-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md index c9949e6588380..ad2c6f509d242 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingRecording --- @@ -30,7 +30,7 @@ New-MgCommunicationOnlineMeetingRecording -OnlineMeetingId [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgCommunicationOnlineMeetingRecording -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +53,7 @@ New-MgCommunicationOnlineMeetingRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +63,7 @@ New-MgCommunicationOnlineMeetingRecording -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.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md index 1fa061e21edb2..093cfd6e16993 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationOnlineMeetingTranscript --- @@ -31,7 +31,6 @@ New-MgCommunicationOnlineMeetingTranscript -OnlineMeetingId [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +40,7 @@ New-MgCommunicationOnlineMeetingTranscript -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +54,6 @@ New-MgCommunicationOnlineMeetingTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +63,7 @@ New-MgCommunicationOnlineMeetingTranscript -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.CloudCommunications/New-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md index 509bacc1ba240..b3b3307dd7215 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgCommunicationPresence --- @@ -30,7 +30,6 @@ New-MgCommunicationPresence [-ResponseHeadersVariable ] [-Activity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,6 @@ New-MgCommunicationPresence -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md index b7544045cd6c7..8b11f1bc3f079 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeeting --- @@ -47,7 +47,6 @@ New-MgUserOnlineMeeting -UserId [-ResponseHeadersVariable ] [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -57,7 +56,6 @@ New-MgUserOnlineMeeting -UserId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -88,7 +86,6 @@ New-MgUserOnlineMeeting -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -98,7 +95,7 @@ New-MgUserOnlineMeeting -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.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md index f9fbb12a1c465..9dd0079c96b96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingAttendanceReport --- @@ -30,7 +30,7 @@ New-MgUserOnlineMeetingAttendanceReport -OnlineMeetingId -UserId ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgUserOnlineMeetingAttendanceReport -OnlineMeetingId -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +53,7 @@ New-MgUserOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +63,7 @@ New-MgUserOnlineMeetingAttendanceReport -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.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index a487ffa7dcee1..bb2fb6e85707e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -32,7 +32,6 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttendanceReport [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +42,6 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -MeetingAttendanceReport [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -57,7 +55,6 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -67,7 +64,7 @@ New-MgUserOnlineMeetingAttendanceReportAttendanceRecord -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.CloudCommunications/New-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md index 2534fb3148363..8e40d5fd8d65f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingRecording --- @@ -30,7 +30,7 @@ New-MgUserOnlineMeetingRecording -OnlineMeetingId -UserId [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgUserOnlineMeetingRecording -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -53,7 +53,7 @@ New-MgUserOnlineMeetingRecording -InputObject [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +63,7 @@ New-MgUserOnlineMeetingRecording -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.CloudCommunications/New-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md index ebd73465a8869..2967b5a02741f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/New-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/new-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserOnlineMeetingTranscript --- @@ -31,7 +31,6 @@ New-MgUserOnlineMeetingTranscript -OnlineMeetingId -UserId [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +40,7 @@ New-MgUserOnlineMeetingTranscript -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +54,6 @@ New-MgUserOnlineMeetingTranscript -InputObject [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +63,7 @@ New-MgUserOnlineMeetingTranscript -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.CloudCommunications/Remove-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md index 0bb4a43acd072..998cafd04da5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCall --- @@ -27,7 +27,6 @@ Remove-MgCommunicationAdhocCall -AdhocCallId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationAdhocCall -InputObject [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md index 6e56d37129295..8e95cb8254226 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallRecording --- @@ -27,7 +27,6 @@ Remove-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationAdhocCallRecording -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md index 7731efaddf770..22be46adbb14b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccallrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallRecordingContent --- @@ -28,7 +28,6 @@ Remove-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecor [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgCommunicationAdhocCallRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md index 902868f81f447..b160e48e979c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallTranscript --- @@ -27,7 +27,6 @@ Remove-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptI [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationAdhocCallTranscript -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md index 636e6a969dda2..a73141253d312 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallTranscriptContent --- @@ -28,7 +28,6 @@ Remove-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTran [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgCommunicationAdhocCallTranscriptContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md index e8e2f7fa1f953..b14023cf97b65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationadhoccalltranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationAdhocCallTranscriptMetadataContent --- @@ -29,7 +29,6 @@ Remove-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgCommunicationAdhocCallTranscriptMetadataContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md index bbb5c052a9f35..645418bec0615 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCall --- @@ -28,7 +28,6 @@ Remove-MgCommunicationCall -CallId [-IfMatch ] [-ResponseHeader [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgCommunicationCall -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md index 578c090e86a5e..c1c9c82358fa8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallAudioRoutingGroup --- @@ -27,7 +27,6 @@ Remove-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallI [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationCallAudioRoutingGroup -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md index 4277c1ae97f0f..743b3684fc3c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallContentSharingSession --- @@ -27,7 +27,6 @@ Remove-MgCommunicationCallContentSharingSession -CallId -ContentSharing [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationCallContentSharingSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md index 9194ca84e38f5..b85199c93f326 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallOperation --- @@ -27,7 +27,6 @@ Remove-MgCommunicationCallOperation -CallId -CommsOperationId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationCallOperation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md index 4dd7cb21a0a20..d6fb1955ccaa0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallParticipant --- @@ -31,7 +31,6 @@ Remove-MgCommunicationCallParticipant -CallId -ParticipantId [ [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -41,7 +40,6 @@ Remove-MgCommunicationCallParticipant -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md index c82eadd7358f1..e138e3fa515ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordOrganizerV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordorganizerv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallRecordOrganizerV2 --- @@ -27,7 +27,6 @@ Remove-MgCommunicationCallRecordOrganizerV2 -CallRecordId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationCallRecordOrganizerV2 -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md index 975c6b0fc9f81..53500a6cfc65e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallRecordParticipantV2 --- @@ -27,7 +27,6 @@ Remove-MgCommunicationCallRecordParticipantV2 -CallRecordId -Participan [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationCallRecordParticipantV2 -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md index 24d03fc656976..9de12d175b112 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationCallRecordSession --- @@ -27,7 +27,6 @@ Remove-MgCommunicationCallRecordSession -CallRecordId -SessionId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationCallRecordSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md index d3f4e15c5694f..fa6beb95518cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeeting --- @@ -27,7 +27,6 @@ Remove-MgCommunicationOnlineMeeting -OnlineMeetingId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationOnlineMeeting -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md index 539dd84605d00..e792e493732a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingAttendanceReport --- @@ -28,7 +28,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index fb42af228de72..273ead72afaa1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -28,7 +28,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceR [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md index 2387c08a203e0..9a7f24c812e0a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingAttendeeReport --- @@ -28,7 +28,6 @@ Remove-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgCommunicationOnlineMeetingAttendeeReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md index da570f5826194..7179f7568c82b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversation --- @@ -27,7 +27,6 @@ Remove-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversa [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingConversation -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md index 5e44c82e6c709..0e01b663d0214 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessage --- @@ -28,7 +28,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMe [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md index 963a95afa4463..dbd5bc0bf9536 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md index c04de14354eba..aea8ea897a587 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReply [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReply [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 757f1b42e6eb9..fb981c31e5a42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 59688d6e07463..f3209a1d575e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md index 913bf22d9f7cb..02ee52da6fd82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarter Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarter --- @@ -28,7 +28,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarter -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md index ae82fb4399096..2562ea5f100a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -28,7 +28,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReaction [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md index 31da43df8aeb7..c402aad0ff4da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -28,7 +28,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReply [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReply [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index ead4227be0cc2..40956a13fa15d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md index 4d64b1677f43d..f72f727fcc9b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingRecording --- @@ -27,7 +27,6 @@ Remove-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMe [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingRecording -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md index ef6c043319037..dbbee11e0dce6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingRecordingContent --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgCommunicationOnlineMeetingRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md index 31103b2892b13..e3e3d73b9fe12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingTranscript --- @@ -27,7 +27,6 @@ Remove-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -Online [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationOnlineMeetingTranscript -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md index afe0f74ae59e4..737a2fdd1facc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingTranscriptContent --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index b9cdcad2730c1..e4c6eb032c513 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationonlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent --- @@ -29,7 +29,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent -CallTranscriptId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +39,6 @@ Remove-MgCommunicationOnlineMeetingTranscriptMetadataContent [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md index ead9faf8a5ecc..9771226503152 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgCommunicationPresence --- @@ -27,7 +27,6 @@ Remove-MgCommunicationPresence -PresenceId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgCommunicationPresence -InputObject [-IfM [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md index 3c149f45a59b4..1fd57e08859ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeeting --- @@ -27,7 +27,6 @@ Remove-MgUserOnlineMeeting -OnlineMeetingId -UserId [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserOnlineMeeting -InputObject [-IfMatch [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md index 3c818b130c6a8..7727d0beed0d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingAttendanceReport --- @@ -28,7 +28,6 @@ Remove-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgUserOnlineMeetingAttendanceReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index cb212acbf9590..ffcca87aee511 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -28,7 +28,6 @@ Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md index 4b882f775265e..e99d31730ca59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingAttendeeReport --- @@ -28,7 +28,6 @@ Remove-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgUserOnlineMeetingAttendeeReport -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md index 715ee5963e737..88f384768ba7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingRecording --- @@ -28,7 +28,6 @@ Remove-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgUserOnlineMeetingRecording -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md index a99a6697e1d42..3baf19cd54040 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingRecordingContent --- @@ -29,7 +29,6 @@ Remove-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeet [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgUserOnlineMeetingRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md index 24fca8502a298..c99915de8c6e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingTranscript --- @@ -28,7 +28,6 @@ Remove-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgUserOnlineMeetingTranscript -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md index f15fbfd720f64..13e435d349ca0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingTranscriptContent --- @@ -29,7 +29,6 @@ Remove-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMe [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgUserOnlineMeetingTranscriptContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md index 3b8c5e9cca68f..f7f1bdf2970e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguseronlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserOnlineMeetingTranscriptMetadataContent --- @@ -29,7 +29,6 @@ Remove-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgUserOnlineMeetingTranscriptMetadataContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md index 55a6b264d996d..c8b70879e67b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Remove-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/remove-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserPresence --- @@ -27,7 +27,6 @@ Remove-MgUserPresence -UserId [-IfMatch ] [-ResponseHeadersVari [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgUserPresence -InputObject [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md index 945e58e893d91..badf493dd4152 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Rename-MgCommunicationCallScreenSharingRole.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/rename-mgcommunicationcallscreensharingrole Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Rename-MgCommunicationCallScreenSharingRole --- @@ -27,7 +27,6 @@ Rename-MgCommunicationCallScreenSharingRole -CallId [-ResponseHeadersVa [-AdditionalProperties ] [-Role ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Change @@ -38,7 +37,6 @@ Rename-MgCommunicationCallScreenSharingRole -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ChangeViaIdentityExpanded @@ -49,7 +47,6 @@ Rename-MgCommunicationCallScreenSharingRole -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ChangeViaIdentity @@ -60,7 +57,6 @@ Rename-MgCommunicationCallScreenSharingRole -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md index a5350f5c935bd..ba0550ca84caf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationCallDtmfTone.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationcalldtmftone Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgCommunicationCallDtmfTone --- @@ -27,7 +27,7 @@ Send-MgCommunicationCallDtmfTone -CallId [-ResponseHeadersVariable ] [-ClientContext ] [-DelayBetweenTonesMS ] [-Tones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Send @@ -38,7 +38,6 @@ Send-MgCommunicationCallDtmfTone -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -49,7 +48,6 @@ Send-MgCommunicationCallDtmfTone -InputObject [-DelayBetweenTonesMS ] [-Tones ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -60,7 +58,6 @@ Send-MgCommunicationCallDtmfTone -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md index 49b2b95268912..74aafc439afa6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentremindersm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm --- @@ -30,7 +30,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId < [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -41,7 +40,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -53,7 +51,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm [-RemindBeforeTimeInMinutesType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -65,7 +62,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md index 6a87029c54b8b..db9d6dcb81759 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgCommunicationOnlineMeetingVirtualAppointmentSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mgcommunicationonlinemeetingvirtualappointmentsm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgCommunicationOnlineMeetingVirtualAppointmentSm --- @@ -31,7 +31,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -OnlineMeetingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -42,7 +41,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -OnlineMeetingId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -54,7 +52,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -65,7 +62,6 @@ Send-MgCommunicationOnlineMeetingVirtualAppointmentSm -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md index 67dc9b1d36511..999339ebccefa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentReminderSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentremindersm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgUserOnlineMeetingVirtualAppointmentReminderSm --- @@ -30,7 +30,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId - [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -41,7 +40,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -OnlineMeetingId - [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -53,7 +51,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -64,7 +61,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentReminderSm -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md index ecd52c83d9b5d..0f2c3e3478730 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Send-MgUserOnlineMeetingVirtualAppointmentSm.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/send-mguseronlinemeetingvirtualappointmentsm Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Send-MgUserOnlineMeetingVirtualAppointmentSm --- @@ -31,7 +31,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -OnlineMeetingId -UserId < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Send @@ -42,7 +41,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -OnlineMeetingId -UserId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentityExpanded @@ -54,7 +52,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SendViaIdentity @@ -65,7 +62,6 @@ Send-MgUserOnlineMeetingVirtualAppointmentSm -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md index abe7c131023a5..41fabccb86e42 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccallrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationAdhocCallRecordingContent --- @@ -28,7 +28,7 @@ Set-MgCommunicationAdhocCallRecordingContent -AdhocCallId -CallRecordin -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +38,7 @@ Set-MgCommunicationAdhocCallRecordingContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md index 75bc8113a209d..e9de72fbb9523 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationAdhocCallTranscriptContent --- @@ -28,7 +28,7 @@ Set-MgCommunicationAdhocCallTranscriptContent -AdhocCallId -CallTranscr -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +38,7 @@ Set-MgCommunicationAdhocCallTranscriptContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md index bd6ef3afa9d1e..f427e7714448d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationAdhocCallTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationadhoccalltranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationAdhocCallTranscriptMetadataContent --- @@ -29,7 +29,6 @@ Set-MgCommunicationAdhocCallTranscriptMetadataContent -AdhocCallId [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +39,6 @@ Set-MgCommunicationAdhocCallTranscriptMetadataContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md index 0974f30f523ad..ddf17c867e922 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingAttendeeReport --- @@ -29,7 +29,6 @@ Set-MgCommunicationOnlineMeetingAttendeeReport -OnlineMeetingId -InFile [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +39,6 @@ Set-MgCommunicationOnlineMeetingAttendeeReport -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md index 96ec199bd7932..83cf8499e062c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingconversationonlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport --- @@ -29,7 +29,6 @@ Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +39,6 @@ Set-MgCommunicationOnlineMeetingConversationOnlineMeetingAttendeeReport [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md index 52a7c3f7fc4af..c42c63fbc02c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingRecordingContent --- @@ -28,7 +28,7 @@ Set-MgCommunicationOnlineMeetingRecordingContent -CallRecordingId -Onli -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +38,7 @@ Set-MgCommunicationOnlineMeetingRecordingContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md index ca80211928065..87558f1d7451f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingTranscriptContent --- @@ -28,7 +28,7 @@ Set-MgCommunicationOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeetingId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +38,7 @@ Set-MgCommunicationOnlineMeetingTranscriptContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md index 140b0235c7f2b..517fb6e6a6bc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationonlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationOnlineMeetingTranscriptMetadataContent --- @@ -29,7 +29,6 @@ Set-MgCommunicationOnlineMeetingTranscriptMetadataContent -CallTranscriptId ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +39,6 @@ Set-MgCommunicationOnlineMeetingTranscriptMetadataContent [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md index a7502b07cc788..809f413457b96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresence --- @@ -29,7 +29,6 @@ Set-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,6 @@ Set-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -52,7 +50,6 @@ Set-MgCommunicationPresence -InputObject [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +60,6 @@ Set-MgCommunicationPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md index 8d3c918657adf..8a70fa0779961 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceAutomaticLocation --- @@ -30,7 +30,6 @@ Set-MgCommunicationPresenceAutomaticLocation -PresenceId [-WorkLocationType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -41,7 +40,6 @@ Set-MgCommunicationPresenceAutomaticLocation -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -52,7 +50,6 @@ Set-MgCommunicationPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +60,6 @@ Set-MgCommunicationPresenceAutomaticLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md index 71a49740a146c..44ff8977af412 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceManualLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencemanuallocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceManualLocation --- @@ -29,7 +29,6 @@ Set-MgCommunicationPresenceManualLocation -PresenceId [-ResponseHeaders [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,6 @@ Set-MgCommunicationPresenceManualLocation -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +49,6 @@ Set-MgCommunicationPresenceManualLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +59,6 @@ Set-MgCommunicationPresenceManualLocation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md index b1f3d59912332..5d37e176a2d0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceStatusMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresencestatusmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceStatusMessage --- @@ -29,7 +29,6 @@ Set-MgCommunicationPresenceStatusMessage -PresenceId [-ResponseHeadersV [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,6 @@ Set-MgCommunicationPresenceStatusMessage -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +49,6 @@ Set-MgCommunicationPresenceStatusMessage -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +59,6 @@ Set-MgCommunicationPresenceStatusMessage -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md index 37772aeddb8f4..65fb64e912d7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgCommunicationPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mgcommunicationpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgCommunicationPresenceUserPreferredPresence --- @@ -33,7 +33,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -PresenceId [-Availability ] [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -44,7 +43,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -55,7 +53,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -InputObject ] [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -66,7 +63,6 @@ Set-MgCommunicationPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md index a86eea2b099d7..91c342f09cda1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingAttendeeReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingattendeereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingAttendeeReport --- @@ -29,7 +29,6 @@ Set-MgUserOnlineMeetingAttendeeReport -OnlineMeetingId -UserId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +39,6 @@ Set-MgUserOnlineMeetingAttendeeReport -InputObject ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md index f89c980b3702a..a8ce1cb83e78b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingRecordingContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingrecordingcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingRecordingContent --- @@ -28,7 +28,7 @@ Set-MgUserOnlineMeetingRecordingContent -CallRecordingId -OnlineMeeting -UserId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +38,7 @@ Set-MgUserOnlineMeetingRecordingContent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md index 98ded4403d80b..2685eb31d3a32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptcontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingTranscriptContent --- @@ -28,7 +28,7 @@ Set-MgUserOnlineMeetingTranscriptContent -CallTranscriptId -OnlineMeeti -UserId -InFile [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### SetViaIdentity @@ -38,7 +38,7 @@ Set-MgUserOnlineMeetingTranscriptContent -InputObject [-Data ] [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md index 274abf887bb76..b57e713b04ca9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserOnlineMeetingTranscriptMetadataContent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguseronlinemeetingtranscriptmetadatacontent Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserOnlineMeetingTranscriptMetadataContent --- @@ -29,7 +29,6 @@ Set-MgUserOnlineMeetingTranscriptMetadataContent -CallTranscriptId [-ResponseHeadersVariable ] [-Break] [-ContentType ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -40,7 +39,6 @@ Set-MgUserOnlineMeetingTranscriptMetadataContent -InputObject ] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md index e5fa2a2a4a530..8c620db4459e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresence --- @@ -29,7 +29,6 @@ Set-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Activi [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,6 @@ Set-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +49,6 @@ Set-MgUserPresence -InputObject [-ResponseHeaders [-ExpirationDuration ] [-SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +59,6 @@ Set-MgUserPresence -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md index 53859bf3a0fdb..e9e47583a3906 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceAutomaticLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceautomaticlocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceAutomaticLocation --- @@ -30,7 +30,6 @@ Set-MgUserPresenceAutomaticLocation -UserId [-ResponseHeadersVariable < [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -41,7 +40,6 @@ Set-MgUserPresenceAutomaticLocation -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -52,7 +50,6 @@ Set-MgUserPresenceAutomaticLocation -InputObject [-WorkLocationType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +60,6 @@ Set-MgUserPresenceAutomaticLocation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +73,25 @@ Update the automatic work location for a user. The automatic layer participates in the standard precedence model: Use this operation from clients or services that automatically detect location (for example, Teams, network and location agents, or OEM docking apps). It doesn't clear manual or scheduled signals. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.CloudCommunications + +$params = @{ + workLocationType = "office" + placeId = "eb706f15-137e-4722-b4d1-b601481d9251" +} + +# A UPN can also be used as -UserId. +Set-MgUserPresenceAutomaticLocation -UserId $userId -BodyParameter $params + +``` +This example shows how to use the Set-MgUserPresenceAutomaticLocation Cmdlet. + + ## PARAMETERS ### -AdditionalProperties @@ -562,6 +577,5 @@ INPUTOBJECT ``: Identity Parameter - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md index af30ade63f962..6290cc59c259d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceManualLocation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencemanuallocation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceManualLocation --- @@ -29,7 +29,6 @@ Set-MgUserPresenceManualLocation -UserId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,6 @@ Set-MgUserPresenceManualLocation -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +49,6 @@ Set-MgUserPresenceManualLocation -InputObject [-WorkLocationType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +59,6 @@ Set-MgUserPresenceManualLocation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +71,25 @@ This cmdlet has the following aliases, Set the manual work location signal for a user. The explicit value chosen by a user or an authorized client overrides any automatically detected or scheduled working hours and location. +## EXAMPLES +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.CloudCommunications + +$params = @{ + workLocationType = "office" + placeId = "eb706f15-137e-4722-b4d1-b601481d9251" +} + +# A UPN can also be used as -UserId. +Set-MgUserPresenceManualLocation -UserId $userId -BodyParameter $params + +``` +This example shows how to use the Set-MgUserPresenceManualLocation Cmdlet. + + ## PARAMETERS ### -AdditionalProperties @@ -560,6 +575,5 @@ INPUTOBJECT ``: Identity Parameter - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md index 422e5b2ae4e57..6acc754ac6840 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceStatusMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresencestatusmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceStatusMessage --- @@ -29,7 +29,6 @@ Set-MgUserPresenceStatusMessage -UserId [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +39,6 @@ Set-MgUserPresenceStatusMessage -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +49,6 @@ Set-MgUserPresenceStatusMessage -InputObject [-StatusMessage ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -62,7 +59,6 @@ Set-MgUserPresenceStatusMessage -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md index c07ba052bb4b6..b519cda6cbd2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Set-MgUserPresenceUserPreferredPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/set-mguserpresenceuserpreferredpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgUserPresenceUserPreferredPresence --- @@ -33,7 +33,6 @@ Set-MgUserPresenceUserPreferredPresence -UserId [-ResponseHeadersVariab [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -44,7 +43,6 @@ Set-MgUserPresenceUserPreferredPresence -UserId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -55,7 +53,6 @@ Set-MgUserPresenceUserPreferredPresence -InputObject ] [-ExpirationDuration ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -66,7 +63,6 @@ Set-MgUserPresenceUserPreferredPresence -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md index 4a176825ea15c..ef1e08f62cf63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Start-MgCommunicationCallParticipantHoldMusic.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/start-mgcommunicationcallparticipantholdmusic Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Start-MgCommunicationCallParticipantHoldMusic --- @@ -28,7 +28,6 @@ Start-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Start @@ -39,7 +38,6 @@ Start-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentityExpanded @@ -50,7 +48,6 @@ Start-MgCommunicationCallParticipantHoldMusic -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StartViaIdentity @@ -61,7 +58,6 @@ Start-MgCommunicationCallParticipantHoldMusic -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md index ef310ccc44698..0d293600c76ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallMediaProcessing.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallmediaprocessing Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgCommunicationCallMediaProcessing --- @@ -31,7 +31,6 @@ Stop-MgCommunicationCallMediaProcessing -CallId [-ResponseHeadersVariab [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Cancel @@ -42,7 +41,6 @@ Stop-MgCommunicationCallMediaProcessing -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentityExpanded @@ -52,7 +50,7 @@ Stop-MgCommunicationCallMediaProcessing -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CancelViaIdentity @@ -63,7 +61,6 @@ Stop-MgCommunicationCallMediaProcessing -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md index 17e962f2a9212..5067a802e7955 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Stop-MgCommunicationCallParticipantHoldMusic.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/stop-mgcommunicationcallparticipantholdmusic Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgCommunicationCallParticipantHoldMusic --- @@ -27,7 +27,7 @@ Stop-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Stop @@ -38,7 +38,6 @@ Stop-MgCommunicationCallParticipantHoldMusic -CallId -ParticipantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### StopViaIdentityExpanded @@ -48,7 +47,7 @@ Stop-MgCommunicationCallParticipantHoldMusic -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### StopViaIdentity @@ -59,7 +58,6 @@ Stop-MgCommunicationCallParticipantHoldMusic -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md index 86da45a1a5e4d..bdff502ad01f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCall.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccall Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationAdhocCall --- @@ -28,7 +28,6 @@ Update-MgCommunicationAdhocCall -AdhocCallId [-ResponseHeadersVariable [-Transcripts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +37,6 @@ Update-MgCommunicationAdhocCall -AdhocCallId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +47,7 @@ Update-MgCommunicationAdhocCall -InputObject [-Recordings ] [-Transcripts ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +57,7 @@ Update-MgCommunicationAdhocCall -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.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md index b7309035987e0..c1a3a455a4e19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccallrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationAdhocCallRecording --- @@ -30,7 +30,7 @@ Update-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgCommunicationAdhocCallRecording -AdhocCallId -CallRecordingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgCommunicationAdhocCallRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgCommunicationAdhocCallRecording -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.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md index 1a7df440355f3..0d944df26413c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationAdhocCallTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationadhoccalltranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationAdhocCallTranscript --- @@ -31,7 +31,6 @@ Update-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptI [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgCommunicationAdhocCallTranscript -AdhocCallId -CallTranscriptI -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,6 @@ Update-MgCommunicationAdhocCallTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgCommunicationAdhocCallTranscript -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.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md index 7c00463dc5533..1fdc938e85f92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallAudioRoutingGroup.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallaudioroutinggroup Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallAudioRoutingGroup --- @@ -28,7 +28,7 @@ Update-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallI [-Receivers ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +38,7 @@ Update-MgCommunicationCallAudioRoutingGroup -AudioRoutingGroupId -CallI -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +49,7 @@ Update-MgCommunicationCallAudioRoutingGroup -InputObject ] [-RoutingMode ] [-Sources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +59,7 @@ Update-MgCommunicationCallAudioRoutingGroup -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.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md index 98e3976369f96..60c712e731ab9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallContentSharingSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallcontentsharingsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallContentSharingSession --- @@ -27,7 +27,7 @@ Update-MgCommunicationCallContentSharingSession -CallId -ContentSharing [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -37,7 +37,6 @@ Update-MgCommunicationCallContentSharingSession -CallId -ContentSharing -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -47,7 +46,7 @@ Update-MgCommunicationCallContentSharingSession -InputObject ] [-AdditionalProperties ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -57,7 +56,6 @@ Update-MgCommunicationCallContentSharingSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md index 036717a534ea5..8d05217fde526 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcalloperation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallOperation --- @@ -28,7 +28,7 @@ Update-MgCommunicationCallOperation -CallId -CommsOperationId [-Id ] [-ResultInfo ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +38,7 @@ Update-MgCommunicationCallOperation -CallId -CommsOperationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +49,7 @@ Update-MgCommunicationCallOperation -InputObject [-Id ] [-ResultInfo ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -59,7 +59,7 @@ Update-MgCommunicationCallOperation -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.CloudCommunications/Update-MgCommunicationCallParticipant.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md index 0676633c1ccd2..211a08a935ce0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallParticipant.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallparticipant Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallParticipant --- @@ -31,7 +31,7 @@ Update-MgCommunicationCallParticipant -CallId -ParticipantId [-RestrictedExperience ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,7 @@ Update-MgCommunicationCallParticipant -CallId -ParticipantId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +55,7 @@ Update-MgCommunicationCallParticipant -InputObject ] [-RosterSequenceNumber ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +65,7 @@ Update-MgCommunicationCallParticipant -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.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md index b682b499b75b3..34f8b5afb295f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordOrganizerV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordorganizerv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordOrganizerV2 --- @@ -29,7 +29,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -CallRecordId [-Identity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +38,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -CallRecordId -BodyParamete [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -51,7 +49,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +58,6 @@ Update-MgCommunicationCallRecordOrganizerV2 -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md index a476238cae0e4..677e466059923 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordParticipantV2.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordparticipantv2 Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordParticipantV2 --- @@ -29,7 +29,6 @@ Update-MgCommunicationCallRecordParticipantV2 -CallRecordId -Participan [-Identity ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +38,6 @@ Update-MgCommunicationCallRecordParticipantV2 -CallRecordId -Participan -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -51,7 +49,6 @@ Update-MgCommunicationCallRecordParticipantV2 -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -61,7 +58,6 @@ Update-MgCommunicationCallRecordParticipantV2 -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md index c7fc49021c959..d88b7427115e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordsession Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordSession --- @@ -31,7 +31,6 @@ Update-MgCommunicationCallRecordSession -CallRecordId -SessionId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgCommunicationCallRecordSession -CallRecordId -SessionId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,6 @@ Update-MgCommunicationCallRecordSession -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgCommunicationCallRecordSession -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.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md index 7279e864ae4dd..073cf615f4dfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationCallRecordingStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationcallrecordingstatus Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationCallRecordingStatus --- @@ -28,7 +28,7 @@ Update-MgCommunicationCallRecordingStatus -CallId [-ResponseHeadersVari [-AdditionalProperties ] [-ClientContext ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,6 @@ Update-MgCommunicationCallRecordingStatus -CallId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -49,7 +48,7 @@ Update-MgCommunicationCallRecordingStatus -InputObject ] [-AdditionalProperties ] [-ClientContext ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -60,7 +59,6 @@ Update-MgCommunicationCallRecordingStatus -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md index f5c7c53c6bdaf..ef62ec6857594 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeeting --- @@ -47,7 +47,6 @@ Update-MgCommunicationOnlineMeeting -OnlineMeetingId [-ResponseHeadersV [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -57,7 +56,7 @@ Update-MgCommunicationOnlineMeeting -OnlineMeetingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -88,7 +87,6 @@ Update-MgCommunicationOnlineMeeting -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -98,7 +96,7 @@ Update-MgCommunicationOnlineMeeting -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.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md index 404cb6aae639f..e7e05bf7d0b8c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingAttendanceReport --- @@ -30,7 +30,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId < [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -MeetingAttendanceReportId < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +53,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +63,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReport -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.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index c2f33e97018ce..368fe7f83c23b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord --- @@ -32,7 +32,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceR [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +42,7 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord -AttendanceR -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -58,7 +57,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +67,6 @@ Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md index 66bf579886c78..526dfbef52cd9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversation Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversation --- @@ -33,7 +33,7 @@ Update-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversa [-Starter ] [-StarterId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +44,6 @@ Update-MgCommunicationOnlineMeetingConversation -OnlineMeetingEngagementConversa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -60,7 +59,7 @@ Update-MgCommunicationOnlineMeetingConversation -InputObject ] [-StarterId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -71,7 +70,6 @@ Update-MgCommunicationOnlineMeetingConversation -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md index 2d684cccd1f87..9e928d2520881 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessage Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessage --- @@ -33,7 +33,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMe [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +44,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -EngagementConversationMe -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -59,7 +59,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +69,7 @@ Update-MgCommunicationOnlineMeetingConversationMessage -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.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md index ce40fff846dae..02911c3f33d39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessageReaction --- @@ -31,7 +31,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +43,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +55,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +66,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md index 72d394aec84ea..99a72c0b70d35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessageReply --- @@ -34,7 +34,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +46,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -62,7 +62,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +73,7 @@ Update-MgCommunicationOnlineMeetingConversationMessageReply -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.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md index 9f66fe1ad8e76..4c3b7a5d9b1f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationmessagereplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction --- @@ -31,7 +31,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +43,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +55,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +66,6 @@ Update-MgCommunicationOnlineMeetingConversationMessageReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md index 42405782416a0..435f2c1f84aab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarter.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarter Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarter --- @@ -33,7 +33,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +44,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -59,7 +59,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter -InputObject ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +69,7 @@ Update-MgCommunicationOnlineMeetingConversationStarter -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.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md index 3b856ded7de1e..050dcddcfb4af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarterReaction --- @@ -30,7 +30,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +53,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -67,7 +64,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md index cac49feafc87f..f98bd22f7cb61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReply.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreply Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarterReply --- @@ -33,7 +33,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +44,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -60,7 +60,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply [-ReplyTo ] [-ReplyToId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -71,7 +71,7 @@ Update-MgCommunicationOnlineMeetingConversationStarterReply -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.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md index 70b1259ccccfb..8c212792a0d53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingconversationstarterreplyreaction Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction --- @@ -31,7 +31,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +43,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +55,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ReactionType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +66,6 @@ Update-MgCommunicationOnlineMeetingConversationStarterReplyReaction [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md index c752da2959de6..e95a70f4a63b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingRecording --- @@ -30,7 +30,7 @@ Update-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMe [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgCommunicationOnlineMeetingRecording -CallRecordingId -OnlineMe -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgCommunicationOnlineMeetingRecording -InputObject ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgCommunicationOnlineMeetingRecording -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.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md index 5ede7d85c2781..475aea1d24df2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationonlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationOnlineMeetingTranscript --- @@ -31,7 +31,6 @@ Update-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -Online [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgCommunicationOnlineMeetingTranscript -CallTranscriptId -Online -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,6 @@ Update-MgCommunicationOnlineMeetingTranscript -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgCommunicationOnlineMeetingTranscript -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.CloudCommunications/Update-MgCommunicationPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md index 509126c6817a9..3aacc0ffaafa4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgCommunicationPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mgcommunicationpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgCommunicationPresence --- @@ -30,7 +30,6 @@ Update-MgCommunicationPresence -PresenceId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +39,6 @@ Update-MgCommunicationPresence -PresenceId -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +51,6 @@ Update-MgCommunicationPresence -InputObject [-WorkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgCommunicationPresence -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.CloudCommunications/Update-MgUserOnlineMeeting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md index 72f4efc231675..b0e230e47b533 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeeting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeeting Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeeting --- @@ -48,7 +48,6 @@ Update-MgUserOnlineMeeting -OnlineMeetingId -UserId [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -58,7 +57,7 @@ Update-MgUserOnlineMeeting -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -89,7 +88,6 @@ Update-MgUserOnlineMeeting -InputObject [-WatermarkProtection ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -99,7 +97,7 @@ Update-MgUserOnlineMeeting -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.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md index cc2fc71b7f254..3f99e2a9bfbf0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereport Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingAttendanceReport --- @@ -30,7 +30,7 @@ Update-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-MeetingEndDateTime ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,6 @@ Update-MgUserOnlineMeetingAttendanceReport -MeetingAttendanceReportId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -54,7 +53,7 @@ Update-MgUserOnlineMeetingAttendanceReport -InputObject ] [-MeetingStartDateTime ] [-TotalParticipantCount ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +63,7 @@ Update-MgUserOnlineMeetingAttendanceReport -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.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index bf55d85ca1c29..6e0e7dd7434ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingattendancereportattendancerecord Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord --- @@ -32,7 +32,6 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId < [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +42,7 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord -AttendanceRecordId < -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -58,7 +57,6 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord [-TotalAttendanceInSeconds ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +67,6 @@ Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md index 095180ef4572d..139eaae20f656 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingRecording.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingrecording Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingRecording --- @@ -30,7 +30,7 @@ Update-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId < [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgUserOnlineMeetingRecording -CallRecordingId -OnlineMeetingId < -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgUserOnlineMeetingRecording -InputObject [-MeetingOrganizer ] [-RecordingContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgUserOnlineMeetingRecording -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.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md index 08106aa2da35c..458c2975d12f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserOnlineMeetingTranscript.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguseronlinemeetingtranscript Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserOnlineMeetingTranscript --- @@ -31,7 +31,6 @@ Update-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgUserOnlineMeetingTranscript -CallTranscriptId -OnlineMeetingId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,6 @@ Update-MgUserOnlineMeetingTranscript -InputObject [-TranscriptContentUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgUserOnlineMeetingTranscript -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.CloudCommunications/Update-MgUserPresence.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md index 803b0f5cf9b82..2486480be6454 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CloudCommunications/Update-MgUserPresence.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CloudCommunications-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.cloudcommunications/update-mguserpresence Locale: en-US Module Name: Microsoft.Graph.CloudCommunications -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserPresence --- @@ -30,7 +30,6 @@ Update-MgUserPresence -UserId [-ResponseHeadersVariable ] [-Act [-WorkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +39,6 @@ Update-MgUserPresence -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +51,6 @@ Update-MgUserPresence -InputObject [-WorkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgUserPresence -InputObject -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