Domain Detective

API Reference

Class

CmdletGetCertificateInventorySummary

Namespace DomainDetective.PowerShell
Assembly DomainDetective.PowerShell
Base PSCmdlet
Modifiers sealed
Attributes
Cmdlet("Get", "DDCertificateInventorySummary") Alias(["Get-CertificateInventorySummary"]) OutputType([typeof(CertificateInventorySummary)])

Builds a certificate inventory summary from persisted monitor snapshots.

Inheritance

  • PSCmdlet
  • CmdletGetCertificateInventorySummary

Examples

Build summary for the last 30 days


Get-DDCertificateInventorySummary -SinceUtc (Get-Date).ToUniversalTime().AddDays(-30)
        

Constructors

Methods

ProcessRecord() #

Executes the cmdlet.

Properties

public String CacheDirectory { get; set; } #
Parameter(Mandatory = false)

Certificate monitor cache directory containing the inventory folder.

public Nullable<DateTime> SinceUtc { get; set; } #
Parameter(Mandatory = false)

Only include snapshots captured since this UTC date/time.

public Int32 ExpiringWithinDays { get; set; } #
Parameter(Mandatory = false) ValidateRange(0, 2147483647)

Expiring-soon window in days.

public Int32 MaxExpiringEndpoints { get; set; } #
Parameter(Mandatory = false) ValidateRange(0, 2147483647)

Maximum number of expiring endpoints returned in summary details.

{{ include "footer" }}