Domain Detective

API Reference

Class

CmdletGetRegistrationDrift

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

Builds a structured WHOIS/RDAP drift view from stored registration snapshots.

Inheritance

  • PSCmdlet
  • CmdletGetRegistrationDrift

Examples

Get drift for the last 90 days


Get-DDRegistrationDrift -DomainName example.com -StorePath .\Store -SinceUtc (Get-Date).ToUniversalTime().AddDays(-90)
        

Constructors

Methods

ProcessRecord() #

Executes the cmdlet.

Properties

public String DomainName { get; set; } #
Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true) ValidateNotNullOrEmpty ValidateDomainName

Domain to load snapshots for.

public String StorePath { get; set; } #
Parameter(Mandatory = true) ValidateNotNullOrEmpty

Root directory for snapshot storage.

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

Only load snapshots captured since this UTC date/time.

{{ include "footer" }}