TestimoX

API Reference

Command

Get-CxPatchDetails

Namespace ComputerX.PowerShell
Outputs
ComputerX.PatchDetails.PatchDetailsInfo

Returns detailed MSRC patch entries for a product and release month.

Examples

Authored help example

Example 1: Lists the current month's Windows Server 2025 patch entries.

PS>


Get-CxPatchDetails -Month 2026-03 -Product 'Windows Server 2025'
        

Example 2: Pulls .NET 8 patch details and filters the output to critical items.

PS>


Get-CxPatchDetails -Month 2026-03 -Product '.NET 8' | Where-Object Severity -eq 'Critical'
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

Get-CxPatchDetails [-Month <string>] [-Product <string>] [<CommonParameters>]
#

Parameters

Month string optionalposition: 0pipeline: false
Month to query in yyyy-MM or yyyy-MMM format. When omitted, the current UTC month is used.
Product string optionalposition: 1pipeline: false
Product hint used to normalize the MSRC product family and version. Examples include Windows Server 2025, Windows 11, .NET 8, or SQL Server 2022.

Outputs

ComputerX.PatchDetails.PatchDetailsInfo