From 0cd58c235cd1e7ae278e1e7e4b30322855bc9906 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:38:22 -0700 Subject: [PATCH 01/16] revert 790 --- scripts/GenerateMarkDown.ps1 | 177 +++++++---------------------------- 1 file changed, 33 insertions(+), 144 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 52498f065e01d..d7fd5d244a5ea 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -13,36 +13,6 @@ function Get-GraphMapping { $graphMapping.Add("beta", "graph-powershell-beta") return $graphMapping } - -function Get-NormalizedContent { - param ( - [ValidateNotNullOrEmpty()] - [string] $FilePath - ) - $content = Get-Content $FilePath -Raw - # Normalize line endings to LF and trim trailing whitespace - $content = $content -replace "`r`n", "`n" - $content = $content.TrimEnd() - # Strip ms.date line so date-only changes are ignored during comparison - $content = $content -replace '(?m)^ms\.date: .+$', '' - return $content -} - -function Get-DeterministicGuid { - param ( - [ValidateNotNullOrEmpty()] - [string] $InputString - ) - $bytes = [System.Text.Encoding]::UTF8.GetBytes($InputString) - $sha256 = [System.Security.Cryptography.SHA256]::Create() - try { - $hash = $sha256.ComputeHash($bytes) - return [guid]::new([byte[]]$hash[0..15]).ToString() - } finally { - $sha256.Dispose() - } -} - function Set-Help { param ( [ValidateNotNullOrEmpty()] @@ -86,11 +56,10 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping - $TempAuthDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTempAuth_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempAuthDir -ItemType Directory -Force | Out-Null $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ $profilePath = "graph-powershell-1.0" @@ -98,34 +67,10 @@ function Start-GraphHelp { $profilePath = "graph-powershell-beta" } - # Generate all auth module docs to temp directory using module-level generation - Set-Help -ModuleDocsPath $TempAuthDir -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - - # Compare and copy all generated auth files - $TempAuthModuleDir = Join-Path $TempAuthDir $AuthPath - if (Test-Path $TempAuthModuleDir) { - if (-not (Test-Path $AuthDestination)) { - New-Item -Path $AuthDestination -ItemType Directory -Force | Out-Null - } - Get-ChildItem -Path $TempAuthModuleDir -Filter "*.md" -File | ForEach-Object { - $tempFile = $_.FullName - $existingFile = Join-Path $AuthDestination $_.Name - if (Test-Path $existingFile) { - $existingContent = Get-NormalizedContent -FilePath $existingFile - $newContent = Get-NormalizedContent -FilePath $tempFile - if ($existingContent -ne $newContent) { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Updated auth doc: $($_.BaseName)" - } - } else { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Added auth doc: $($_.BaseName)" - } - } - } + $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Remove-Item -Path $TempAuthDir -Recurse -Force -ErrorAction SilentlyContinue git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . @@ -144,11 +89,7 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json - - # Create a single temp directory for this profile's generation - $TempOutputDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTemp_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempOutputDir -ItemType Directory -Force | Out-Null - + $ModulesToGenerate | ForEach-Object { $ModuleName = $_ Write-Host $ModuleName @@ -163,104 +104,52 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - + + Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } $CmdletCount = 0 - $MetadataCommands = @{} - - # Generate table of contents for each module using a deterministic GUID + # Generate table of contents for each module $TocFileName = "$Path.md" - $ModuleGuid = Get-DeterministicGuid -InputString $Path + $ModuleGuid = [guid]::NewGuid().ToString() $LinkProfile = $GraphProfile.Replace("v", "") $LinkModuleName = $Path.ToLower() $HelpVersion = "1.0.0.0" $HelpLocale = "en-US" - $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" - - # Build TOC content in memory to compare before writing - $TocContent = @() - $TocContent += "---" - $TocContent += "Module Name: $Path" - $TocContent += "Module Guid: $ModuleGuid" - $TocContent += "Download Help Link: $DownloadLink" - $TocContent += "Help Version: $HelpVersion" - $TocContent += "Locale: $HelpLocale" - $TocContent += "---" - $TocContent += "" - $TocContent += "# $Path Module" - $TocContent += "## Description" - $TocContent += "Microsoft Graph PowerShell Cmdlets" - $TocContent += "" - $TocContent += "## $Path Cmdlets" - + $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" + New-Item -Path $Destination -Name $TocFileName -ItemType File -Force + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "Module Name: $Path" + Add-Content -Path $Destination\$TocFileName -Value "Module Guid: $ModuleGuid" + Add-Content -Path $Destination\$TocFileName -Value "Download Help Link: $DownloadLink" + Add-Content -Path $Destination\$TocFileName -Value "Help Version: $HelpVersion" + Add-Content -Path $Destination\$TocFileName -Value "Locale: $HelpLocale" + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "# $Path Module" + Add-Content -Path $Destination\$TocFileName -Value "## Description" + Add-Content -Path $Destination\$TocFileName -Value "Microsoft Graph PowerShell Cmdlets" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $MetadataCommands[$Command] = $true $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - - # Generate to temp directory and compare with existing - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $TempOutputDir -Command $Command -Module $Path - $TempFilePath = Join-Path $TempOutputDir $Path "$Command.md" - if (Test-Path $TempFilePath) { - if (Test-Path $CmdletDocsPath) { - $existingContent = Get-NormalizedContent -FilePath $CmdletDocsPath - $newContent = Get-NormalizedContent -FilePath $TempFilePath - if ($existingContent -ne $newContent) { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Updated: $Command" - } - } else { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Added: $Command" - } + if (-not(Test-Path $CmdletDocsPath)) { + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } - } elseif (-not (Test-Path $CmdletDocsPath)) { - Write-Warning "Cmdlet $Command is not available." + } - - $TocContent += "### [$Command]($Command.md)" - $TocContent += "" + Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" + Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } - - if ($CmdletCount -eq 0) { + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse - } else { - # Only write TOC if content has changed - $TocFilePath = Join-Path $Destination $TocFileName - $newTocText = ($TocContent -join "`r`n") + "`r`n" - if (Test-Path $TocFilePath) { - $existingTocText = Get-Content $TocFilePath -Raw - # Normalize both to LF for comparison - $existingNormalized = $existingTocText -replace "`r`n", "`n" - $newNormalized = $newTocText -replace "`r`n", "`n" - if ($existingNormalized.TrimEnd() -ne $newNormalized.TrimEnd()) { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Updated TOC: $TocFileName" - } - } else { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Added TOC: $TocFileName" - } - - # Remove orphaned docs — files for commands no longer in metadata - Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { - $cmdName = $_.BaseName - -not $MetadataCommands.ContainsKey($cmdName) -and $_.Name -ne $TocFileName - } | ForEach-Object { - Write-Host "Removing orphaned doc: $($_.Name)" - Remove-Item $_.FullName -Force - } } - # Clean up temp module folder for this iteration - $TempModuleDir = Join-Path $TempOutputDir $Path - if (Test-Path $TempModuleDir) { - Remove-Item -Path $TempModuleDir -Recurse -Force -ErrorAction SilentlyContinue - } } - - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force From e6db7aca807cfefd0501cd38834b6fa3f6728b39 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:43:12 -0700 Subject: [PATCH 02/16] remove stabilize msdate from pipeline --- azure-pipelines/powershell-docs.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index c0304ad79ada1..603004858ab45 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -158,14 +158,6 @@ extends: targetType: 'filePath' pwsh: true filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: PowerShell@2 - displayName: 'Stabilize ms.date values' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/StabilizeMsDate.ps1 - errorActionPreference: 'stop' - task: AzureKeyVault@2 displayName: "Azure Key Vault: Get GitHub App secrets" inputs: From 73a8c601468325d6a6906f1c357449e9cc7d5eba Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:01:17 -0700 Subject: [PATCH 03/16] Prevent mass doc deletion when Graph modules fail to load Guard GenerateMarkDown.ps1 so a module's docs are only deleted when the module is available to regenerate them. Skip-and-preserve per workload module, and abort if Authentication is unavailable, avoiding refresh PRs that delete thousands of docs after a failed module install. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index d7fd5d244a5ea..8c4b03f16ddf8 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -56,9 +56,15 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - - Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ @@ -101,6 +107,16 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # Guard against catastrophic deletions: if the module failed to install/import, + # skip it entirely so its committed docs are preserved instead of being deleted + # and never regenerated (which is what produced the mass-deletion refresh PRs). + if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { + Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + return + } + Import-Module $Path -Force -Global -ErrorAction SilentlyContinue + if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } From 07657def287d803ad342c41d6f0061804d49781b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:09:19 -0700 Subject: [PATCH 04/16] Normalize generated-commit author to Graph DevX Tooling bot EscapeDisallowedHtmlTags.ps1 and RemoveInvalidFullStops.ps1 hardcoded a personal git identity, so their stage commits in the weekly refresh PRs were attributed to an individual instead of the tooling bot. Align both with the other generation scripts. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/EscapeDisallowedHtmlTags.ps1 | 4 ++-- scripts/RemoveInvalidFullStops.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 7f2d4079ff9da..597d7a5633f81 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -23,8 +23,8 @@ function EscapeDisallowedHtmlTags { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Escaped disallowed html tags" } diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 37be47e7c73df..db34789d58025 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -23,8 +23,8 @@ function Remove-InvalidFullStops { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Removed invalid full stops from the beginning of lines" } From 29c4a42a5ee11cabad11dfec978623090f64c623 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 11:36:40 -0700 Subject: [PATCH 05/16] Fix duplicated doc enrichment blocks and BOM churn in generation - UpdateLinks.ps1: only insert the beta/v1 '[!NOTE]' link when it is not already present, so weekly runs stop stacking duplicate note blocks. - GeneratePermissionsTable.ps1: skip files that already contain a '**Permissions**' table instead of prepending another copy each run. - GenerateMarkDown.ps1: write PlatyPS output as UTF-8 without BOM so every regenerated file no longer diffs on a leading BOM. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 4 ++-- scripts/GeneratePermissionsTable.ps1 | 7 ++++++- scripts/UpdateLinks.ps1 | 6 +++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 8c4b03f16ddf8..3aaae05dc9f8d 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -27,7 +27,7 @@ function Set-Help { Command = (Get-Command $Command) OutputFolder = $ModuleDocsPath Force = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } if ($Module -eq "Microsoft.Graph.Authentication") { @@ -35,7 +35,7 @@ function Set-Help { Module = (Get-Module $Module) OutputFolder = $ModuleDocsPath WithModulePage = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } Import-Module $Module -Force -Global } diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index aeca973f7f228..47e90ae3698f8 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -136,7 +136,12 @@ function New-ReferenceTable { "@; - if ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { + if ((Get-Content -Raw -Path $File) -match '\*\*Permissions\*\*') { + # A permissions table has already been inserted on a previous run. + # Skip to avoid prepending a duplicate '**Permissions**' block. + Write-Host "Skipping $CommandName as it already has a permissions table"; + } + elseif ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { $Link = "**Permissions**`r`n`n$markdownTable`r`n`n## EXAMPLES" (Get-Content $File) | Foreach-Object { $_ -replace '## EXAMPLES', $Link } | diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index f7edf3e93bcd6..fcc8d8e2253b2 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -175,7 +175,11 @@ function Add-Link { $Folder = $View.Split("=")[1] $ConfirmFile = Join-Path $WorkLoadDocsPath "$Folder" "$ModuleName" "$CommandRename.md" $ConfirmCommandAvailability = Find-MgGraphCommand -Command $CommandRename - if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile)) { + # Only insert the note if it isn't already present, otherwise every run + # prepends another copy of the same '[!NOTE]' block before '## SYNTAX'. + $NoteMarker = "$LinkTitle [$CommandRename]($BaseUrl/$FullModuleName$View)" + $AlreadyLinked = (Get-Content -Raw -Path $File) -match [regex]::Escape($NoteMarker) + if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile) -and -not $AlreadyLinked) { (Get-Content $File) | Foreach-Object { $_ -replace '## SYNTAX', $Link } | Out-File $File From a94085a9f3a84c441f3ed86dc5714407d8654618 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 12:15:46 -0700 Subject: [PATCH 06/16] Force LF line endings for generated markdown docs Add '*.md text eol=lf' to .gitattributes so PlatyPS/transform scripts, which run on Windows and emit CRLF, no longer produce line-ending churn in the weekly refresh PRs. Index blobs are already LF, so this only pins the working-tree checkout and future writes to LF. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 9fb85ec49f011..ff067eed84e37 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,10 @@ # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf +# Reference docs are generated by PlatyPS/transform scripts on Windows. +# Force LF so regenerated markdown never churns the diff with CRLF endings. +*.md text eol=lf + # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary \ No newline at end of file From 19a3a1a450a7ffe97d24ef506837f842c15293e7 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 29 Jul 2026 11:57:43 -0700 Subject: [PATCH 07/16] Prevent mass doc deletion by overwriting in place and removing only orphans Bulk-deleting a module's docs before regenerating meant any transient import failure (installed but unimportable module, e.g. Authentication version conflict) wiped docs that were never regenerated, producing refresh PRs with thousands of missing files. Now: verify the module truly imports and exposes commands before processing (skip-and-preserve otherwise), overwrite each doc in place, and remove only genuine orphans whose command is no longer in the metadata. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 56 +++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 16 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 3aaae05dc9f8d..0d5a062bef429 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -63,7 +63,7 @@ function Start-GraphHelp { if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." } - Import-Module Microsoft.Graph.Authentication -Force -Global + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { @@ -108,21 +108,37 @@ function Get-FolderByProfile { $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath - # Guard against catastrophic deletions: if the module failed to install/import, - # skip it entirely so its committed docs are preserved instead of being deleted + # Guard against catastrophic deletions. A module can be installed yet fail to + # import (e.g. an Authentication version conflict), and ListAvailable alone does + # not catch that. Verify the module actually imports AND exposes commands; if it + # does not, skip it so its committed docs are preserved instead of being wiped # and never regenerated (which is what produced the mass-deletion refresh PRs). - if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { - Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + $ModuleUsable = $false + if (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue) { + try { + Import-Module $Path -Force -Global -ErrorAction Stop + if (Get-Command -Module $Path -ErrorAction SilentlyContinue) { + $ModuleUsable = $true + } + } catch { + Write-Warning "Module $Path failed to import: $($_.Exception.Message)" + } + } + if (-not $ModuleUsable) { + Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } - Import-Module $Path -Force -Global -ErrorAction SilentlyContinue if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - - Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } + + # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in + # place as it is regenerated, and only genuine orphans (commands no longer in the + # metadata) are removed afterwards. This guarantees that a transient generation + # failure can never wipe a module's documentation. $CmdletCount = 0 + $MetadataCommands = @{} # Generate table of contents for each module $TocFileName = "$Path.md" $ModuleGuid = [guid]::NewGuid().ToString() @@ -147,19 +163,27 @@ function Get-FolderByProfile { Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - if (-not(Test-Path $CmdletDocsPath)) { - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path - } else { - Write-Warning "Cmdlet $Command is not available." - } - + $MetadataCommands[$Command] = $true + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } + + # Remove only genuine orphans: docs whose command is no longer in the metadata. + # Docs for commands still in metadata are preserved even if this run failed to + # regenerate them, so a bad run cannot delete valid documentation. + Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { + $_.Name -ne $TocFileName -and -not $MetadataCommands.ContainsKey($_.BaseName) + } | ForEach-Object { + Write-Host "Removing orphaned doc: $($_.Name)" + Remove-Item $_.FullName -Force + } + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse } From 00db04466cdc97b8fcbf4298c23497504bb7fd81 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 30 Jul 2026 17:20:46 -0700 Subject: [PATCH 08/16] Refactor weekly docs pipeline into isolated per-module stages Each Graph workload module now generates in its own Azure DevOps stage per SDK profile (~86 independent stages), giving every module a fresh agent and a clean assembly-load context. This structurally eliminates the "assembly with same name is already loaded" collisions that produced mass-deletion / no-op refresh PRs. - GenerateMarkDown.ps1: add -GraphProfileFilter and -ModuleFilter scoping; in scoped runs do a complete delete + full regen of the single module, throw before any deletion on import failure (fail-safe), and emit a ModuleGenerated signal only on success. - 9 post-processing scripts: add matching profile/module scoping and empty-commit guards so each touches only the target module folder. - update-template.yml: parameterized install (InstallProfile/Module) that installs only Authentication + the single workload submodule for isolated runs; install failures warn instead of failing. - New common-templates/generate-module-docs-steps.yml: full single-module sequence (install -> generate -> post-process -> push -> PR). Generate step is continueOnError and every later step is gated on ModuleGenerated, so a failing module deletes nothing, opens no PR, and never fails the overall pipeline. - New common-templates/module-stages.yml: emits one dependsOn:[] stage per module. - powershell-docs.yml: invoke module-stages.yml for v1.0 (incl. Authentication) and beta; each stage opens its own pull request. ms.date changes every run (StabilizeMsDate is intentionally not run) for reviewable PRs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .../generate-module-docs-steps.yml | 219 ++++++++++++++++ .../common-templates/module-stages.yml | 50 ++++ azure-pipelines/powershell-docs.yml | 248 ++++++++---------- azure-pipelines/update-template.yml | 60 ++++- scripts/CorrectRelatedLinks-AllFiles.ps1 | 10 +- scripts/EscapeDisallowedHtmlTags.ps1 | 16 +- scripts/GenerateAliasedDocs.ps1 | 11 +- scripts/GenerateMarkDown.ps1 | 93 +++++-- scripts/GeneratePermissionsTable.ps1 | 15 +- scripts/MsSubserviceUpdate.ps1 | 7 +- scripts/RemoveBoilerPlateCode.ps1 | 34 ++- scripts/RemoveInvalidFullStops.ps1 | 16 +- .../RepairExamplesDescriptionsAndTitle.ps1 | 14 +- scripts/UpdateLinks.ps1 | 9 +- 14 files changed, 600 insertions(+), 202 deletions(-) create mode 100644 azure-pipelines/common-templates/generate-module-docs-steps.yml create mode 100644 azure-pipelines/common-templates/module-stages.yml diff --git a/azure-pipelines/common-templates/generate-module-docs-steps.yml b/azure-pipelines/common-templates/generate-module-docs-steps.yml new file mode 100644 index 0000000000000..290ee79651d59 --- /dev/null +++ b/azure-pipelines/common-templates/generate-module-docs-steps.yml @@ -0,0 +1,219 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Reusable steps that generate and post-process documentation for a SINGLE module in a SINGLE +# SDK profile, then open a dedicated pull request for it. Designed to run inside an isolated +# per-module stage so an import/assembly conflict for one module can never affect another. +# +# Failure containment: the generate step runs with continueOnError, and every step after it is +# gated on the ModuleGenerated variable (set only when generation actually succeeds). If the +# module fails to import, nothing is deleted, no PR is opened, and the stage is marked +# partially-succeeded WITHOUT failing the overall pipeline or any other module's stage. + +parameters: + - name: Module + type: string + - name: GraphProfileFilter + type: string + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + +steps: + - template: ../update-template.yml + parameters: + InstallProfile: ${{ parameters.GraphProfileFilter }} + Module: ${{ parameters.Module }} + + - task: PowerShell@2 + name: ComputeBranch + displayName: 'Compute branch name' + inputs: + targetType: 'inline' + pwsh: true + script: | + git submodule update --init --recursive + $branch = "{0}-{1}-{2}_{3}" -f "${{ parameters.BranchPrefix }}", "${{ parameters.GraphProfileFilter }}", "${{ parameters.Module }}", (Get-Date -Format yyyyMMddHHmm) + Write-Host "Compute branch: $branch" + Write-Host "##vso[task.setvariable variable=ModuleBranch;isOutput=true]$branch" + + - task: Bash@3 + displayName: 'Create module refresh branch' + inputs: + targetType: inline + script: | + git status + git branch $(ComputeBranch.ModuleBranch) + git checkout $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create missing external docs folder' + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CreateExternalDocsFolder.ps1 + + - task: PowerShell@2 + name: GenerateDocs + displayName: 'Generate markdown (${{ parameters.Module }} / ${{ parameters.GraphProfileFilter }})' + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateMarkDown.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Escape disallowed html tags' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/EscapeDisallowedHtmlTags.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update metadata header' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/MsSubserviceUpdate.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate permissions table' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GeneratePermissionsTable.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update Links' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/UpdateLinks.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Repair Examples and Descriptions and Title' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove boiler plate code' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveBoilerPlateCode.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove invalid fullstops' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveInvalidFullStops.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate missing docs for aliased cmdlets' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateAliasedDocs.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Correct related links section' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: AzureKeyVault@2 + displayName: "Azure Key Vault: Get GitHub App secrets" + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + inputs: + azureSubscription: "Federated AKV Managed Identity Connection" + KeyVaultName: akv-prod-eastus + SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" + + - task: PowerShell@2 + displayName: 'Push ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }}) branch' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" + git config --system core.longpaths true + # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. + $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$token" + git status + git add . + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updating reference docs for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + } + else { + $global:LASTEXITCODE = 0 + } + git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create PR for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + $BaseBranchName = "${{ parameters.BaseBranch }}" + $Head = "MicrosoftDocs:$(ComputeBranch.ModuleBranch)" + $Title = "Weekly Docs Refresh: ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + $Body = "This pull request was automatically created by Azure Pipelines for the ``${{ parameters.Module }}`` module (``${{ parameters.GraphProfileFilter }}`` profile). **Important** Check for unexpected deletions or changes in this PR." + # The microsoft-graph-devx-bot GitHub App must have pull_requests:write on this repo. + $env:GITHUB_TOKEN = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($env:GITHUB_TOKEN)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$env:GITHUB_TOKEN" + gh pr create -t $Title -b $Body -B $BaseBranchName -H $Head diff --git a/azure-pipelines/common-templates/module-stages.yml b/azure-pipelines/common-templates/module-stages.yml new file mode 100644 index 0000000000000..f8a1f19f2cfc1 --- /dev/null +++ b/azure-pipelines/common-templates/module-stages.yml @@ -0,0 +1,50 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Emits one fully independent stage per module for a given SDK profile. Each stage runs on its +# own agent (clean assembly-load context), generates + post-processes docs for that single +# module, and opens its own pull request. All stages have dependsOn: [] so they run in +# parallel and one module can never block or fail another. + +parameters: + - name: GraphProfileFilter + type: string + # Short label used in stage names (stage names cannot contain '.'), e.g. "v1" or "beta". + - name: ProfileLabel + type: string + - name: Modules + type: object + default: [] + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + - name: PipelineTimeout + type: number + default: 120 + +stages: + - ${{ each module in parameters.Modules }}: + - stage: "Gen_${{ parameters.ProfileLabel }}_${{ replace(module, '.', '_') }}" + displayName: '${{ parameters.GraphProfileFilter }} - ${{ module }}' + dependsOn: [] + jobs: + - job: GenerateModuleDocs + timeoutInMinutes: ${{ parameters.PipelineTimeout }} + templateContext: + outputs: + - output: pipelineArtifact + displayName: 'Publish missing external docs' + targetPath: missingexternaldocsurl + artifactName: "MissingExternalDocs-${{ parameters.ProfileLabel }}-${{ replace(module, '.', '-') }}" + publishLocation: 'Container' + condition: succeededOrFailed() + steps: + - template: generate-module-docs-steps.yml + parameters: + Module: ${{ module }} + GraphProfileFilter: ${{ parameters.GraphProfileFilter }} + BranchPrefix: ${{ parameters.BranchPrefix }} + BaseBranch: ${{ parameters.BaseBranch }} diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index 603004858ab45..b6dc5b22f8b9b 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,148 +47,106 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - stage: stage - jobs: - - job: PowerShellDocsUpdate - timeoutInMinutes: ${{ parameters.PipelineTimeout }} - templateContext: - outputs: - - output: pipelineArtifact - displayName: 'Publish Examples to be reviewed as artifact' - targetPath: missingexternaldocsurl - artifactName: 'MissingExternalDocs' - publishLocation: 'Container' - steps: - - template: azure-pipelines/update-template.yml@self - - task : PowerShell@2 - name: "ComputeBranch" - displayName: 'Compute Branch Name' - inputs: - targetType: 'inline' - script: | - git submodule update --init --recursive - $branch = "{0}_{1}" -f "WeeklyReferenceDocsUpdate", (Get-Date -Format yyyyMMddHHmm) - Write-Host "Compute branch: $branch" - Write-Host "##vso[task.setvariable variable=WeeklyReferenceDocsBranch;isOutput=true]$branch" - - task: Bash@3 - displayName: "Create weekly refresh branch" - inputs: - targetType: inline - script: | - git status - git branch $(ComputeBranch.WeeklyReferenceDocsBranch) - git checkout $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - task: PowerShell@2 - displayName: 'Create missing external docs folder' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CreateExternalDocsFolder.ps1 - - - task: PowerShell@2 - displayName: 'Generate markdown files from PowerShell help files' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateMarkDown.ps1 - - task: PowerShell@2 - displayName: 'Escape disallowed html tags' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/EscapeDisallowedHtmlTags.ps1 - - task: PowerShell@2 - displayName: 'Update metadata header' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/MsSubserviceUpdate.ps1 - - task: PowerShell@2 - displayName: 'Generate permissions table' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GeneratePermissionsTable.ps1 - - task: PowerShell@2 - displayName: 'Update Links' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/UpdateLinks.ps1 - errorActionPreference: 'stop' - - task: PowerShell@2 - displayName: 'Repair Examples and Descriptions and Title' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 - - task: PowerShell@2 - displayName: 'Remove boiler plate code' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveBoilerPlateCode.ps1 - - task: PowerShell@2 - displayName: 'Remove invalid fullstops' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveInvalidFullStops.ps1 - - task: PowerShell@2 - displayName: 'Generate missing docs for aliased cmdlets' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateAliasedDocs.ps1 - - task: PowerShell@2 - displayName: 'Correct related links section' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: AzureKeyVault@2 - displayName: "Azure Key Vault: Get GitHub App secrets" - inputs: - azureSubscription: "Federated AKV Managed Identity Connection" - KeyVaultName: akv-prod-eastus - SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" - - task: PowerShell@2 - displayName: Pushing to github - env: - GhAppId: $(microsoft-graph-devx-bot-appid) - GhAppKey: $(microsoft-graph-devx-bot-privatekey) - inputs: - targetType: inline - pwsh: true - script: | - git config --global user.email "GraphTooling@service.microsoft.com" - git config --global user.name "Microsoft Graph DevX Tooling" - git config --system core.longpaths true - # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. - $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" - if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } - # Mask the token so it is never surfaced in pipeline logs. - Write-Host "##vso[task.setsecret]$token" - git status - git add . - git commit -m "Updating reference docs" - git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - template: azure-pipelines/common-templates/create-pr.yml@self - parameters: - BaseBranch: "main" - TargetBranch: $(ComputeBranch.WeeklyReferenceDocsBranch) - Title: "Weekly PowerShell Microsoft Graph Reference Docs Refresh" - Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." \ No newline at end of file + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "v1.0" + ProfileLabel: "v1" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Authentication + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "beta" + ProfileLabel: "beta" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates diff --git a/azure-pipelines/update-template.yml b/azure-pipelines/update-template.yml index cd0ec7be60216..8884e887a9aae 100644 --- a/azure-pipelines/update-template.yml +++ b/azure-pipelines/update-template.yml @@ -1,3 +1,16 @@ +parameters: + # Which SDK profile to install for. "both" preserves the original full-run behaviour and + # installs the Microsoft.Graph and Microsoft.Graph.Beta meta modules. + - name: InstallProfile + type: string + default: both + # When set, only the single workload submodule for that module (plus Authentication) is + # installed instead of the whole SDK. This keeps each isolated per-module stage fast and + # guarantees only one workload module is ever present in the session. + - name: Module + type: string + default: "" + steps: - task: PowerShell@2 displayName: Install Required Modules @@ -12,25 +25,44 @@ steps: if (-not (Get-PSRepository -Name PowerShell_V2_Build -ErrorAction SilentlyContinue)) { Register-PSRepository -Name PowerShell_V2_Build -SourceLocation $feedUrl -InstallationPolicy Trusted -Credential $cred } - try{ - # Try to update the V1 module first. - Install-Module Microsoft.Graph.Beta -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing Beta" + + $installProfile = "${{ parameters.InstallProfile }}" + $module = "${{ parameters.Module }}" + + # Build the list of modules to install. + $toInstall = @() + if ([string]::IsNullOrWhiteSpace($module)) { + # Full-run behaviour: install the meta module(s) for the requested profile(s). + if ($installProfile -ne 'v1.0') { $toInstall += 'Microsoft.Graph.Beta' } + if ($installProfile -ne 'beta') { $toInstall += 'Microsoft.Graph' } } - try{ - # Try to update the beta module first. - Install-Module Microsoft.Graph -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing V1" + else { + # Isolated per-module run: install only Authentication + the single workload + # submodule for the target profile. + $toInstall += 'Microsoft.Graph.Authentication' + if ($installProfile -eq 'beta') { + $toInstall += "Microsoft.Graph.Beta.$module" + } + else { + $toInstall += "Microsoft.Graph.$module" + } + } + + foreach ($m in $toInstall) { + try { + Install-Module $m -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber + } + catch { + # Do not fail the install step; a missing/failed module surfaces later as a + # fail-safe (no deletion, no PR) in the isolated generation stage. + Write-Host "##vso[task.logissue type=warning]Failed to install $m : $($_.Exception.Message)" + } } - $modules = Get-Module -Name Microsoft.Graph -ListAvailable + $modules = Get-Module -Name Microsoft.Graph* -ListAvailable foreach($r in $modules) { - echo $r.Version + echo "$($r.Name) $($r.Version)" } env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) diff --git a/scripts/CorrectRelatedLinks-AllFiles.ps1 b/scripts/CorrectRelatedLinks-AllFiles.ps1 index 3f6a71383b9e6..be414538528a7 100644 --- a/scripts/CorrectRelatedLinks-AllFiles.ps1 +++ b/scripts/CorrectRelatedLinks-AllFiles.ps1 @@ -19,7 +19,11 @@ param( [Parameter(Mandatory = $false)] [ValidateSet("v1.0", "beta", "both")] - [string]$GraphProfile = "both" + [Alias("GraphProfileFilter")] + [string]$GraphProfile = "both", + + [Parameter(Mandatory = $false)] + [string]$ModuleFilter = "" ) function Get-GraphMapping { @@ -217,6 +221,10 @@ if ($ModulesToGenerate.Count -eq 0) { } } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} + # Main execution Write-Host "=== Related Links Correction Script ===" -ForegroundColor Blue Write-Host "Working directory: $WorkLoadDocsPath" -ForegroundColor Blue diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 597d7a5633f81..0039a05b33500 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function EscapeDisallowedHtmlTags { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Escaped disallowed html tags" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Escaped disallowed html tags" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -322,5 +331,8 @@ function CleanupFile { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} EscapeDisallowedHtmlTags -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GenerateAliasedDocs.ps1 b/scripts/GenerateAliasedDocs.ps1 index 97eba9685354d..c7ba9bec1d19c 100644 --- a/scripts/GenerateAliasedDocs.ps1 +++ b/scripts/GenerateAliasedDocs.ps1 @@ -6,12 +6,18 @@ See related PR for more information. #> +Param( + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" +) + function Start-GenerateAliasedDocs { $BreakingChangeReportV1Report = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-V1.0.csv") $BreakingChangeReportBetaReport = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-beta.csv") $Reports = @() - $Reports += $BreakingChangeReportV1Report - $Reports += $BreakingChangeReportBetaReport + if ($GraphProfileFilter -ne "beta") { $Reports += $BreakingChangeReportV1Report } + if ($GraphProfileFilter -ne "v1.0") { $Reports += $BreakingChangeReportBetaReport } foreach ($BreakingChangeReport in $Reports) { Import-Csv $BreakingChangeReport | ForEach-Object { $Command = $_."NewCmdlet" @@ -39,6 +45,7 @@ function Copy-Files { if($CmdDetails){ $Module = $CmdDetails.Module $Module = $Module.Replace("Beta.", "") + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $Module -ne $ModuleFilter) { return } $Module = "$ModulePrefix.$Module" $NewDoc = (Join-Path $PSScriptRoot "../microsoftgraph" $GraphProfilePath $Module "$Command.md") if(Test-Path $NewDoc) { diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 0d5a062bef429..ed6c85dcdb009 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -5,7 +5,16 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config\ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + # Restrict generation to a single SDK profile ("v1.0" or "beta"); "both" keeps the + # original full-run behaviour. + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + # Restrict generation to a single module (e.g. "Applications" or "Authentication"). Empty + # means all modules. When set, the run is "scoped": the module's folder is completely + # cleared and regenerated, and an import failure aborts THIS run (fail-safe, no deletion) + # instead of silently skipping. + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -51,36 +60,55 @@ function Start-GraphHelp { Param( $ModulesToGenerate = @() ) - - #Generate for auth module first + $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath - # Guard against catastrophic deletions: never remove existing docs unless the module - # is available to regenerate them. Authentication is required for every run, so abort - # if it failed to install rather than wiping committed documentation. - if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { - throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) } - Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop - Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - $GraphMapping = Get-GraphMapping - $GraphMapping.Keys | ForEach-Object { - $graphProfile = $_ - $profilePath = "graph-powershell-1.0" - if ($graphProfile -eq "beta") { - $profilePath = "graph-powershell-beta" - } + # Authentication docs live under graph-powershell-1.0 and are only generated on a full run + # or when Authentication is the explicitly targeted module. + $generateAuth = ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") + if ($generateAuth -and ($profilesToProcess -contains "v1.0")) { + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" - Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + } + + # Workload modules. Skip entirely when Authentication is the explicit single target. + if ($ModuleFilter -ne "Authentication") { + $profilesToProcess | ForEach-Object { + $graphProfile = $_ + $profilePath = "graph-powershell-1.0" + if ($graphProfile -eq "beta") { + $profilePath = "graph-powershell-beta" + } + Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + } } + git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Updated markdown help" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updated markdown help" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FolderByProfile { @@ -95,6 +123,14 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json + + # In scoped (single-module) runs, restrict to the requested module and enable + # complete-delete + regenerate for it (safe because the module is verified to import + # below before anything is removed). + $Scoped = -not [string]::IsNullOrWhiteSpace($ModuleFilter) + if ($Scoped) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) + } $ModulesToGenerate | ForEach-Object { $ModuleName = $_ @@ -125,6 +161,12 @@ function Get-FolderByProfile { } } if (-not $ModuleUsable) { + if ($Scoped) { + # Isolated single-module run: fail fast WITHOUT deleting anything so the + # module's committed docs are preserved. The pipeline job contains this + # failure (continueOnError) so it never fails the whole run or other modules. + throw "Module $Path is not usable in isolated generation; aborting this module without deleting its documentation." + } Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } @@ -132,6 +174,13 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } + elseif ($Scoped) { + # Complete deletion + regeneration for this single module. Safe here because the + # module imported successfully above, so regeneration repopulates the folder. + Get-ChildItem -Path $Destination -Filter "*.md" -File | ForEach-Object { + Remove-Item $_.FullName -Force + } + } # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in # place as it is regenerated, and only genuine orphans (commands no longer in the @@ -209,4 +258,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" Start-GraphHelp -ModulesToGenerate $ModulesToGenerate +# Signal successful generation so downstream pipeline steps (post-processing, push, PR) only +# run when this module actually generated. On an import failure the script throws before this +# line, the variable is never set, and the isolated stage opens no PR and deletes nothing. +Write-Host "##vso[task.setvariable variable=ModuleGenerated]true" Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index 47e90ae3698f8..d854d62458c62 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -1,6 +1,9 @@ param( [string]$MgCommandMetadatJsonFile = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), - [string[]]$CmdList = @() + [string[]]$CmdList = @(), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { @@ -11,6 +14,9 @@ function Start-Generator { $CommandName = $_.Command; $ApiVersion = $_.ApiVersion $Module = $_.Module; + if ($GraphProfileFilter -ne "both" -and $ApiVersion -ne $GraphProfileFilter) { return } + $normalizedModule = $Module -replace "^Beta\.", "" + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $normalizedModule -ne $ModuleFilter) { return } #Array for DelegatedWork Permissions $DelegatedWorkPermissions = @(); #Array for Application Permissions @@ -70,7 +76,12 @@ function Start-Generator { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Inserted permissions Table" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Inserted permissions Table" + } else { + $global:LASTEXITCODE = 0 + } } catch { Write-Host "Error in $_"; diff --git a/scripts/MsSubserviceUpdate.ps1 b/scripts/MsSubserviceUpdate.ps1 index d9bbd826afe67..54ce3c003d8ca 100644 --- a/scripts/MsSubserviceUpdate.ps1 +++ b/scripts/MsSubserviceUpdate.ps1 @@ -5,7 +5,10 @@ Param( [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $SDKOpenApiPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl") + [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { if (Test-Path $CommandMetadataPath) { @@ -22,6 +25,8 @@ function Start-Generator { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $Path = "$ModulePrefix.$ModuleName" $DestinationFile = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" try { diff --git a/scripts/RemoveBoilerPlateCode.ps1 b/scripts/RemoveBoilerPlateCode.ps1 index 246e79ba3febe..8158654b106a1 100644 --- a/scripts/RemoveBoilerPlateCode.ps1 +++ b/scripts/RemoveBoilerPlateCode.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication") + [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -19,19 +22,22 @@ function Start-Repair { $ModulesToGenerate = @() ) - #Cleanup Authentication Module first - $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse - foreach ($file in $files) { - $content = Get-Content -Path $file.FullName - # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' - $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } - # Write the cleaned content back to the file - $cleanedContent | Set-Content -Path $file.FullName + #Cleanup Authentication Module first (only on a full run or the Authentication stage). + if ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") { + $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse + foreach ($file in $files) { + $content = Get-Content -Path $file.FullName + # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' + $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } + # Write the cleaned content back to the file + $cleanedContent | Set-Content -Path $file.FullName + } } $ModulePrefix = "Microsoft.Graph" $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($graphProfile -eq "beta") { $profilePath = "graph-powershell-beta" @@ -41,7 +47,12 @@ function Start-Repair { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Remove boiler plate code injected by Autorest" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Remove boiler plate code injected by Autorest" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -118,5 +129,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Repair -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index db34789d58025..21cfad73afe51 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function Remove-InvalidFullStops { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Removed invalid full stops from the beginning of lines" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Removed invalid full stops from the beginning of lines" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -88,6 +97,9 @@ if ($ModulesToGenerate.Count -eq 0) { [HashTable] $ModuleMapping = Get-Content $ModuleMappingConfigPath | ConvertFrom-Json -AsHashTable $ModulesToGenerate = $ModuleMapping.Keys } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Remove-InvalidFullStops -ModulesToGenerate $ModulesToGenerate diff --git a/scripts/RepairExamplesDescriptionsAndTitle.ps1 b/scripts/RepairExamplesDescriptionsAndTitle.ps1 index c8e3c74074799..e1fd1d5a8f172 100644 --- a/scripts/RepairExamplesDescriptionsAndTitle.ps1 +++ b/scripts/RepairExamplesDescriptionsAndTitle.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Copy { @@ -22,6 +25,8 @@ function Start-Copy { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $DocPath = Join-Path $SDKDocsPath $ModuleName $GraphProfile "examples" "$Command.md" try { @@ -38,7 +43,12 @@ function Start-Copy { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Repaired examples and descriptions" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Repaired examples and descriptions" + } else { + $global:LASTEXITCODE = 0 + } } diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index fcc8d8e2253b2..1ba011281aa6a 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), - [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph") + [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -22,6 +25,7 @@ function Start-Update { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $GraphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($GraphProfile -eq "beta") { $ProfilePath = "graph-powershell-beta" @@ -205,5 +209,8 @@ if ($ModulesToGenerate.Count -eq 0) { Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Update -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file From 5202fe4d4c7f28cceeacc3451143fda9366e18b0 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 11:11:08 -0700 Subject: [PATCH 09/16] Fix template path resolution in powershell-docs.yml Azure DevOps resolves template references relative to the directory of the referencing file. powershell-docs.yml lives in azure-pipelines/, so the "azure-pipelines/common-templates/module-stages.yml@self" path resolved to azure-pipelines/azure-pipelines/common-templates/module-stages.yml and failed with "Not Found". Use a path relative to the file's own directory instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- azure-pipelines/powershell-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index b6dc5b22f8b9b..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,7 +47,7 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "v1.0" ProfileLabel: "v1" @@ -99,7 +99,7 @@ extends: - Users.Actions - Users.Functions - WindowsUpdates - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "beta" ProfileLabel: "beta" From 42ee94a517a9a413473c62ef0e79e2295f181756 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:57:13 +0000 Subject: [PATCH 10/16] Updated markdown help --- .../Get-MgUserActivity.md | 44 +++------------- .../Get-MgUserActivityCount.md | 50 +++++------------- .../Get-MgUserActivityHistoryItem.md | 49 ++++++----------- .../Get-MgUserActivityHistoryItemActivity.md | 46 ++++++---------- .../Get-MgUserActivityHistoryItemCount.md | 46 ++++++---------- .../Invoke-MgRecentUserActivity.md | 52 +++---------------- .../Microsoft.Graph.CrossDeviceExperiences.md | 21 +------- .../New-MgUserActivity.md | 51 ++++++------------ .../New-MgUserActivityHistoryItem.md | 52 ++++++------------- .../Remove-MgUserActivity.md | 48 ++--------------- .../Remove-MgUserActivityHistoryItem.md | 48 ++++------------- .../Update-MgUserActivity.md | 52 ++++++------------- .../Update-MgUserActivityHistoryItem.md | 51 ++++++------------ 13 files changed, 155 insertions(+), 455 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md index 90b26c0261e69..cdead2aa24c10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivity Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserActivity --- @@ -17,9 +17,6 @@ The user's activities across devices. Read-only. Nullable. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivity?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -30,7 +27,7 @@ Get-MgUserActivity -UserId [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgUserActivity -UserId [-ExpandProperty ] [-Property -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgUserActivity -UserActivityId -UserId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -63,19 +60,14 @@ Read-only. Nullable. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Get-MgUserActivity -UserId $userId -``` -This example shows how to use the Get-MgUserActivity Cmdlet. - - ## PARAMETERS ### -All @@ -563,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -571,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md index a51ecff5a361d..c98369f5dde06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivitycount Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserActivityCount --- @@ -15,9 +15,6 @@ title: Get-MgUserActivityCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityCount](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserActivityCount -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserActivityCount -UserId [-Filter ] [-Search ] Get-MgUserActivityCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +44,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | -| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | -| Application | Not supported | +{{ Add code here }} ## PARAMETERS @@ -341,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -349,27 +348,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserActivityCount](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivitycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivitycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md index c540a59642a6c..07a4402a67edd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitem Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserActivityHistoryItem --- @@ -16,9 +16,6 @@ title: Get-MgUserActivityHistoryItem Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgUserActivityHistoryItem -UserActivityId -UserId [-Expand [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgUserActivityHistoryItem -ActivityHistoryItemId -UserActivityId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgUserActivityHistoryItem -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ActivityHistoryItemId @@ -576,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -584,28 +591,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitem) - - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitem) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md index e170fdb1c17bc..e807daa81e27c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemactivity Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserActivityHistoryItemActivity --- @@ -16,9 +16,6 @@ title: Get-MgUserActivityHistoryItemActivity Optional. NavigationProperty/Containment; navigation property to the associated activity. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityHistoryItemActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityHistoryItemActivity?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgUserActivityHistoryItemActivity -ActivityHistoryItemId -UserActiv -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgUserActivityHistoryItemActivity -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, Optional. NavigationProperty/Containment; navigation property to the associated activity. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ActivityHistoryItemId @@ -381,7 +388,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -389,27 +396,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserActivityHistoryItemActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemactivity) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemactivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md index 9e1e076a64731..cdfbb112b633d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemcount Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgUserActivityHistoryItemCount --- @@ -15,9 +15,6 @@ title: Get-MgUserActivityHistoryItemCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityHistoryItemCount](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityHistoryItemCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgUserActivityHistoryItemCount -UserActivityId -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +32,7 @@ Get-MgUserActivityHistoryItemCount -UserActivityId -UserId [-F Get-MgUserActivityHistoryItemCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,6 +44,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -354,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -362,27 +369,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgUserActivityHistoryItemCount](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md index a81be9efdd231..5e1ef5ad21ee8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/invoke-mgrecentuseractivity Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgRecentUserActivity --- @@ -22,9 +22,6 @@ The UserActivity.ReadWrite.CreatedByApp permission will also apply extra filteri This server-side filtering might result in empty pages if the user is active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaRecentUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Invoke-MgBetaRecentUserActivity?view=graph-powershell-beta) - ## SYNTAX ### Recent (Default) @@ -34,7 +31,7 @@ Invoke-MgRecentUserActivity -UserId [-Count] [-ExpandProperty ] [-Property ] [-Search ] [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### RecentViaIdentity @@ -45,7 +42,7 @@ Invoke-MgRecentUserActivity -InputObject [-Cou [-Skip ] [-Sort ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -64,28 +61,15 @@ The UserActivity.ReadWrite.CreatedByApp permission will also apply extra filteri This server-side filtering might result in empty pages if the user is active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | -| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | -| Application | Not supported | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Invoke-MgRecentUserActivity -UserId $userId -``` -This example shows how to use the Invoke-MgRecentUserActivity Cmdlet. - - ## PARAMETERS ### -Break @@ -502,7 +486,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -510,27 +494,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgRecentUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/invoke-mgrecentuseractivity) -- [Graph API Reference](https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/invoke-mgrecentuseractivity) +- [](https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md index 3fcf8d32f11c0..e8dc0ccab9189 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.CrossDeviceExperiences -Module Guid: 3e474475-b382-44b4-a320-ec1efd4d6644 +Module Guid: c6853fd2-8f0b-4321-bd4d-640b27ac69f3 Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.crossdeviceexperiences/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -39,22 +39,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserActivityHistoryItem](Update-MgUserActivityHistoryItem.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md index b8a4c0a4e6d69..97a84a52bbf1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivity Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserActivity --- @@ -15,9 +15,6 @@ title: New-MgUserActivity Create new navigation property to activities for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/New-MgBetaUserActivity?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -32,7 +29,6 @@ New-MgUserActivity -UserId [-ResponseHeadersVariable ] [-Activa [-VisualElements ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -42,7 +38,6 @@ New-MgUserActivity -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -58,7 +53,6 @@ New-MgUserActivity -InputObject [-VisualElements ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -68,7 +62,7 @@ New-MgUserActivity -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -80,6 +74,16 @@ This cmdlet has the following aliases, Create new navigation property to activities for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ActivationUrl @@ -865,7 +869,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: userActivity +BODYPARAMETER : userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1018,12 +1022,12 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user -VISUALELEMENTS ``: visualInfo +VISUALELEMENTS : visualInfo [(Any) ]: This indicates any property can be added to this object. [Attribution ]: imageInfo [(Any) ]: This indicates any property can be added to this object. @@ -1045,27 +1049,4 @@ Short text description of the user's unique activity (for example, document name ## RELATED LINKS -- [New-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivity) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md index d884a51a50c09..5e102ade22a68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivityhistoryitem Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgUserActivityHistoryItem --- @@ -15,9 +15,6 @@ title: New-MgUserActivityHistoryItem Create new navigation property to historyItems for users -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/New-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgUserActivityHistoryItem -UserActivityId -UserId [-Status ] [-UserTimezone ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +37,7 @@ New-MgUserActivityHistoryItem -UserActivityId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -55,7 +51,6 @@ New-MgUserActivityHistoryItem -InputObject [-Status ] [-UserTimezone ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -65,7 +60,7 @@ New-MgUserActivityHistoryItem -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to historyItems for users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ActiveDurationSeconds @@ -746,7 +751,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ACTIVITY ``: userActivity +ACTIVITY : userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -822,7 +827,7 @@ Longer text description of the user's unique activity (example: document name, f [DisplayText ]: Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation) -BODYPARAMETER ``: activityHistoryItem +BODYPARAMETER : activityHistoryItem [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -899,7 +904,7 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -907,27 +912,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivityhistoryitem) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivityhistoryitem) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md index 9ac7315c8ef0c..73b60024fa821 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivity Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserActivity --- @@ -15,9 +15,6 @@ title: Remove-MgUserActivity Delete navigation property activities for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Remove-MgBetaUserActivity?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgUserActivity -UserActivityId -UserId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgUserActivity -InputObject [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,28 +44,15 @@ This cmdlet has the following aliases, Delete navigation property activities for users -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | -| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | -| Application | Not supported | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Remove-MgUserActivity -UserId $userId -UserActivityId $userActivityId -``` -This example shows how to use the Remove-MgUserActivity Cmdlet. - - ## PARAMETERS ### -Break @@ -422,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -430,26 +412,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md index f8cea12e5e3d6..8ccf205027bff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivityhistoryitem Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgUserActivityHistoryItem --- @@ -15,9 +15,6 @@ title: Remove-MgUserActivityHistoryItem Delete navigation property historyItems for users -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Remove-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgUserActivityHistoryItem -ActivityHistoryItemId -UserActivityId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgUserActivityHistoryItem -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,13 +45,15 @@ This cmdlet has the following aliases, Delete navigation property historyItems for users -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | -| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | -| Application | Not supported | +{{ Add code here }} ## PARAMETERS @@ -430,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -438,27 +435,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivityhistoryitem) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivityhistoryitem) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md index 7ee8b718e4116..2917a99e3bd6d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivity Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserActivity --- @@ -15,9 +15,6 @@ title: Update-MgUserActivity Update the navigation property activities in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Update-MgBetaUserActivity?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,6 @@ Update-MgUserActivity -UserActivityId -UserId [-ResponseHeader [-VisualElements ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,7 @@ Update-MgUserActivity -UserActivityId -UserId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -58,7 +54,6 @@ Update-MgUserActivity -InputObject [-VisualElements ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -68,7 +63,7 @@ Update-MgUserActivity -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -80,6 +75,16 @@ This cmdlet has the following aliases, Update the navigation property activities in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ActivationUrl @@ -892,7 +897,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: userActivity +BODYPARAMETER : userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1045,12 +1050,12 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user -VISUALELEMENTS ``: visualInfo +VISUALELEMENTS : visualInfo [(Any) ]: This indicates any property can be added to this object. [Attribution ]: imageInfo [(Any) ]: This indicates any property can be added to this object. @@ -1072,27 +1077,4 @@ Short text description of the user's unique activity (for example, document name ## RELATED LINKS -- [Update-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivity) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md index bf539cc0eceb4..7e6c6e60d0717 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.CrossDeviceExperiences-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivityhistoryitem Locale: en-US Module Name: Microsoft.Graph.CrossDeviceExperiences -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgUserActivityHistoryItem --- @@ -15,9 +15,6 @@ title: Update-MgUserActivityHistoryItem Update the navigation property historyItems in users -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Update-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgUserActivityHistoryItem -ActivityHistoryItemId -UserActivityId [-Status ] [-UserTimezone ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,6 @@ Update-MgUserActivityHistoryItem -ActivityHistoryItemId -UserActivityId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -56,7 +51,6 @@ Update-MgUserActivityHistoryItem -InputObject [-Status ] [-UserTimezone ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -66,7 +60,7 @@ Update-MgUserActivityHistoryItem -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -78,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property historyItems in users +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -ActiveDurationSeconds @@ -774,7 +778,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ACTIVITY ``: userActivity +ACTIVITY : userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -850,7 +854,7 @@ Longer text description of the user's unique activity (example: document name, f [DisplayText ]: Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation) -BODYPARAMETER ``: activityHistoryItem +BODYPARAMETER : activityHistoryItem [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -927,7 +931,7 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -935,27 +939,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivityhistoryitem) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivityhistoryitem) From 962cf4969b4c6e21d818a0a1532fb3b6e6ef1a81 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:57:18 +0000 Subject: [PATCH 11/16] Escaped disallowed html tags --- .../Get-MgUserActivity.md | 24 +++++++++++++++- .../Get-MgUserActivityCount.md | 24 +++++++++++++++- .../Get-MgUserActivityHistoryItem.md | 24 +++++++++++++++- .../Get-MgUserActivityHistoryItemActivity.md | 24 +++++++++++++++- .../Get-MgUserActivityHistoryItemCount.md | 24 +++++++++++++++- .../Invoke-MgRecentUserActivity.md | 24 +++++++++++++++- .../Microsoft.Graph.CrossDeviceExperiences.md | 19 +++++++++++++ .../New-MgUserActivity.md | 28 +++++++++++++++++-- .../New-MgUserActivityHistoryItem.md | 28 +++++++++++++++++-- .../Remove-MgUserActivity.md | 24 +++++++++++++++- .../Remove-MgUserActivityHistoryItem.md | 24 +++++++++++++++- .../Update-MgUserActivity.md | 28 +++++++++++++++++-- .../Update-MgUserActivityHistoryItem.md | 28 +++++++++++++++++-- 13 files changed, 303 insertions(+), 20 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md index cdead2aa24c10..ee506c8a6a019 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md index c98369f5dde06..3a0a14fe57774 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md @@ -340,7 +340,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -349,3 +349,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivitycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md index 07a4402a67edd..4db80cec9a3eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md @@ -583,7 +583,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -592,3 +592,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitem) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md index e807daa81e27c..839b16fb119f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md @@ -388,7 +388,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -397,3 +397,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemactivity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md index cdfbb112b633d..fdb356c7929ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md @@ -361,7 +361,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -370,3 +370,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md index 5e1ef5ad21ee8..f52806e4d2429 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md @@ -486,7 +486,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -496,3 +496,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/invoke-mgrecentuseractivity) - [](https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md index e8dc0ccab9189..30b6a4a8fce64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Microsoft.Graph.CrossDeviceExperiences.md @@ -39,3 +39,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgUserActivityHistoryItem](Update-MgUserActivityHistoryItem.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md index 97a84a52bbf1a..a3a6f907afc75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md @@ -869,7 +869,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : userActivity +BODYPARAMETER ``: userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1022,12 +1022,12 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user -VISUALELEMENTS : visualInfo +VISUALELEMENTS ``: visualInfo [(Any) ]: This indicates any property can be added to this object. [Attribution ]: imageInfo [(Any) ]: This indicates any property can be added to this object. @@ -1050,3 +1050,25 @@ Short text description of the user's unique activity (for example, document name ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md index 5e102ade22a68..b0872c1a41f1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md @@ -751,7 +751,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ACTIVITY : userActivity +ACTIVITY ``: userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -827,7 +827,7 @@ Longer text description of the user's unique activity (example: document name, f [DisplayText ]: Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation) -BODYPARAMETER : activityHistoryItem +BODYPARAMETER ``: activityHistoryItem [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -904,7 +904,7 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -913,3 +913,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivityhistoryitem) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md index 73b60024fa821..22bd1dc72fa5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md @@ -404,7 +404,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -413,3 +413,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md index 8ccf205027bff..bcb12530b9008 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md @@ -427,7 +427,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -436,3 +436,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivityhistoryitem) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md index 2917a99e3bd6d..e4f1ae6649c91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md @@ -897,7 +897,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : userActivity +BODYPARAMETER ``: userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1050,12 +1050,12 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user -VISUALELEMENTS : visualInfo +VISUALELEMENTS ``: visualInfo [(Any) ]: This indicates any property can be added to this object. [Attribution ]: imageInfo [(Any) ]: This indicates any property can be added to this object. @@ -1078,3 +1078,25 @@ Short text description of the user's unique activity (for example, document name ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md index 7e6c6e60d0717..c395418e29d94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md @@ -778,7 +778,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ACTIVITY : userActivity +ACTIVITY ``: userActivity [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -854,7 +854,7 @@ Longer text description of the user's unique activity (example: document name, f [DisplayText ]: Required. Short text description of the user's unique activity (for example, document name in cases where an activity refers to document creation) -BODYPARAMETER : activityHistoryItem +BODYPARAMETER ``: activityHistoryItem [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -931,7 +931,7 @@ Required for timeline history. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [ActivityHistoryItemId ]: The unique identifier of activityHistoryItem [UserActivityId ]: The unique identifier of userActivity [UserId ]: The unique identifier of user @@ -940,3 +940,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivityhistoryitem) + + + + + + + + + + + + + + + + + + + + + + From bff660e821c7868fa426bf04848e84554b0150d6 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:10:00 +0000 Subject: [PATCH 12/16] Inserted permissions Table --- .../Get-MgUserActivityCount.md | 8 ++++++++ .../Invoke-MgRecentUserActivity.md | 8 ++++++++ .../Remove-MgUserActivity.md | 8 ++++++++ .../Remove-MgUserActivityHistoryItem.md | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md index 3a0a14fe57774..21b009a23e62e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | +| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md index f52806e4d2429..0770742f34639 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md @@ -61,6 +61,14 @@ The UserActivity.ReadWrite.CreatedByApp permission will also apply extra filteri This server-side filtering might result in empty pages if the user is active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | +| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md index 22bd1dc72fa5b..5c6c976afe1f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property activities for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | +| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md index bcb12530b9008..464c05e1bfd0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property historyItems for users +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | UserActivity.ReadWrite.CreatedByApp, | +| Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | +| Application | Not supported | + ## EXAMPLES ### EXAMPLE 1 From 9d788dafd713c3d851ef294b9ad0ec042f46be2a Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:10:09 +0000 Subject: [PATCH 13/16] Updated metadata parameters --- .../Get-MgUserActivity.md | 3 +++ .../Get-MgUserActivityCount.md | 3 +++ .../Get-MgUserActivityHistoryItem.md | 3 +++ .../Get-MgUserActivityHistoryItemActivity.md | 3 +++ .../Get-MgUserActivityHistoryItemCount.md | 3 +++ .../Invoke-MgRecentUserActivity.md | 3 +++ .../New-MgUserActivity.md | 3 +++ .../New-MgUserActivityHistoryItem.md | 3 +++ .../Remove-MgUserActivity.md | 3 +++ .../Remove-MgUserActivityHistoryItem.md | 3 +++ .../Update-MgUserActivity.md | 3 +++ .../Update-MgUserActivityHistoryItem.md | 3 +++ 12 files changed, 36 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md index ee506c8a6a019..313a8d17370ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md @@ -17,6 +17,9 @@ The user's activities across devices. Read-only. Nullable. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivity?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md index 21b009a23e62e..db32f253467a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md @@ -15,6 +15,9 @@ title: Get-MgUserActivityCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityCount](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md index 4db80cec9a3eb..17dd60655625f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md @@ -16,6 +16,9 @@ title: Get-MgUserActivityHistoryItem Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md index 839b16fb119f0..a33261492a467 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md @@ -16,6 +16,9 @@ title: Get-MgUserActivityHistoryItemActivity Optional. NavigationProperty/Containment; navigation property to the associated activity. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityHistoryItemActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityHistoryItemActivity?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md index fdb356c7929ac..4a1f02ade135c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md @@ -15,6 +15,9 @@ title: Get-MgUserActivityHistoryItemCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaUserActivityHistoryItemCount](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Get-MgBetaUserActivityHistoryItemCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md index 0770742f34639..998337e9f3103 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md @@ -22,6 +22,9 @@ The UserActivity.ReadWrite.CreatedByApp permission will also apply extra filteri This server-side filtering might result in empty pages if the user is active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaRecentUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Invoke-MgBetaRecentUserActivity?view=graph-powershell-beta) + ## SYNTAX ### Recent (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md index a3a6f907afc75..c83e760bb70ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md @@ -15,6 +15,9 @@ title: New-MgUserActivity Create new navigation property to activities for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/New-MgBetaUserActivity?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md index b0872c1a41f1d..0f4bd7f4fbb1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md @@ -15,6 +15,9 @@ title: New-MgUserActivityHistoryItem Create new navigation property to historyItems for users +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/New-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md index 5c6c976afe1f0..4f49b9362197f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md @@ -15,6 +15,9 @@ title: Remove-MgUserActivity Delete navigation property activities for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Remove-MgBetaUserActivity?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md index 464c05e1bfd0c..e13aca7298e8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md @@ -15,6 +15,9 @@ title: Remove-MgUserActivityHistoryItem Delete navigation property historyItems for users +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Remove-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md index e4f1ae6649c91..e122ebf09e61b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md @@ -15,6 +15,9 @@ title: Update-MgUserActivity Update the navigation property activities in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserActivity](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Update-MgBetaUserActivity?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md index c395418e29d94..eaf2e13b2d7f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md @@ -15,6 +15,9 @@ title: Update-MgUserActivityHistoryItem Update the navigation property historyItems in users +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaUserActivityHistoryItem](/powershell/module/Microsoft.Graph.Beta.CrossDeviceExperiences/Update-MgBetaUserActivityHistoryItem?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From c4d46f5e6b598fcaf158d310e0b3b05438e8c4df Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:10:15 +0000 Subject: [PATCH 14/16] Repaired examples and descriptions --- .../Get-MgUserActivity.md | 7 ++++++- .../Get-MgUserActivityHistoryItem.md | 12 ++---------- .../Get-MgUserActivityHistoryItemActivity.md | 11 +---------- .../Invoke-MgRecentUserActivity.md | 7 ++++++- .../New-MgUserActivity.md | 11 +---------- .../New-MgUserActivityHistoryItem.md | 11 +---------- .../Remove-MgUserActivity.md | 7 ++++++- .../Remove-MgUserActivityHistoryItem.md | 11 +---------- .../Update-MgUserActivity.md | 11 +---------- .../Update-MgUserActivityHistoryItem.md | 11 +---------- 10 files changed, 26 insertions(+), 73 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md index 313a8d17370ae..7824ccc38679f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md @@ -63,14 +63,19 @@ Read-only. Nullable. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Get-MgUserActivity -UserId $userId +``` +This example shows how to use the Get-MgUserActivity Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md index 17dd60655625f..793accb0895ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Optional. NavigationProperty/Containment; navigation property to the activity's historyItems. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ActivityHistoryItemId @@ -614,6 +604,8 @@ INPUTOBJECT ``: Identity Parameter + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md index a33261492a467..c91ffa2323070 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Optional. NavigationProperty/Containment; navigation property to the associated activity. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ActivityHistoryItemId @@ -420,5 +410,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md index 998337e9f3103..1d664df9d3659 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md @@ -73,14 +73,19 @@ To get your application's activities, use the nextLink property to paginate. | Application | Not supported | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Invoke-MgRecentUserActivity -UserId $userId +``` +This example shows how to use the Invoke-MgRecentUserActivity Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md index c83e760bb70ab..de4083cbfe68b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Create new navigation property to activities for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ActivationUrl @@ -1073,5 +1063,6 @@ Short text description of the user's unique activity (for example, document name + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md index 0f4bd7f4fbb1c..1bb791be0c1a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to historyItems for users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ActiveDurationSeconds @@ -936,5 +926,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md index 4f49b9362197f..acc5b9fff3cd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md @@ -56,14 +56,19 @@ Delete navigation property activities for users | Application | Not supported | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.CrossDeviceExperiences # A UPN can also be used as -UserId. Remove-MgUserActivity -UserId $userId -UserActivityId $userActivityId +``` +This example shows how to use the Remove-MgUserActivity Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md index e13aca7298e8e..3992bc81dee25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md @@ -56,16 +56,6 @@ Delete navigation property historyItems for users | Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | | Application | Not supported | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ActivityHistoryItemId @@ -467,5 +457,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md index e122ebf09e61b..6d22cb0b9f0a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Update the navigation property activities in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ActivationUrl @@ -1101,5 +1091,6 @@ Short text description of the user's unique activity (for example, document name + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md index eaf2e13b2d7f6..03ac2720ca5e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property historyItems in users -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -ActiveDurationSeconds @@ -963,5 +953,6 @@ INPUTOBJECT ``: Identity Parameter + From 821af67a6cdcf1a7bc9c8a1bc9287408b8dcae90 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:10:18 +0000 Subject: [PATCH 15/16] Remove boiler plate code injected by Autorest --- .../Get-MgUserActivityCount.md | 11 +---------- .../Get-MgUserActivityHistoryItemCount.md | 11 +---------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md index db32f253467a4..bada57f2d4410 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md @@ -55,16 +55,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | UserActivity.ReadWrite.CreatedByApp, | | Application | Not supported | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -380,5 +370,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md index 4a1f02ade135c..862e6e252f5e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -393,5 +383,6 @@ INPUTOBJECT ``: Identity Parameter + From 80c5836ce756c4e058026fdbf812aeb5d01a136e Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:10:34 +0000 Subject: [PATCH 16/16] Corrected related link to conform to the new platyps rules --- .../Get-MgUserActivity.md | 2 +- .../Get-MgUserActivityCount.md | 2 +- .../Get-MgUserActivityHistoryItem.md | 2 +- .../Get-MgUserActivityHistoryItemActivity.md | 2 +- .../Get-MgUserActivityHistoryItemCount.md | 2 +- .../Invoke-MgRecentUserActivity.md | 4 ++-- .../New-MgUserActivity.md | 2 +- .../New-MgUserActivityHistoryItem.md | 2 +- .../Remove-MgUserActivity.md | 2 +- .../Remove-MgUserActivityHistoryItem.md | 2 +- .../Update-MgUserActivity.md | 2 +- .../Update-MgUserActivityHistoryItem.md | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md index 7824ccc38679f..e06688f00c785 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivity.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivity) +- [Get-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md index bada57f2d4410..08bf1626855e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityCount.md @@ -349,7 +349,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivitycount) +- [Get-MgUserActivityCount](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivitycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md index 793accb0895ec..0a19908dffdc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItem.md @@ -584,7 +584,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitem) +- [Get-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitem) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md index c91ffa2323070..a466e607c30cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemActivity.md @@ -389,7 +389,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemactivity) +- [Get-MgUserActivityHistoryItemActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemactivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md index 862e6e252f5e9..508217a5e3a57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Get-MgUserActivityHistoryItemCount.md @@ -362,7 +362,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemcount) +- [Get-MgUserActivityHistoryItemCount](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/get-mguseractivityhistoryitemcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md index 1d664df9d3659..e037e53c1d313 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Invoke-MgRecentUserActivity.md @@ -510,8 +510,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/invoke-mgrecentuseractivity) -- [](https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0) +- [Invoke-MgRecentUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/invoke-mgrecentuseractivity) +- [Graph API Reference](https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md index de4083cbfe68b..f7cc1a82c495b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivity.md @@ -1042,7 +1042,7 @@ Short text description of the user's unique activity (for example, document name ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivity) +- [New-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md index 1bb791be0c1a5..c8860e67f16d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/New-MgUserActivityHistoryItem.md @@ -905,7 +905,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivityhistoryitem) +- [New-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/new-mguseractivityhistoryitem) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md index acc5b9fff3cd2..9a0615fde4065 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivity.md @@ -428,7 +428,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivity) +- [Remove-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md index 3992bc81dee25..b5b7ff8e9a691 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Remove-MgUserActivityHistoryItem.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivityhistoryitem) +- [Remove-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/remove-mguseractivityhistoryitem) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md index 6d22cb0b9f0a9..7de653e512906 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivity.md @@ -1070,7 +1070,7 @@ Short text description of the user's unique activity (for example, document name ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivity) +- [Update-MgUserActivity](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md index 03ac2720ca5e5..5083690d40875 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.CrossDeviceExperiences/Update-MgUserActivityHistoryItem.md @@ -932,7 +932,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivityhistoryitem) +- [Update-MgUserActivityHistoryItem](https://learn.microsoft.com/powershell/module/microsoft.graph.crossdeviceexperiences/update-mguseractivityhistoryitem)