This page is retired and no longer updated. Project documentation and download links are moved to their new home: PowerShell PKI Module.
This command requires installed Remote Server Administration Tools (RSAT)

Get-CASchema

Synopsis

Retrieves Certification Authority database schema.

Syntax

Get-CASchema [-CertificationAuthority] <CertificateAuthority[]> [[-Table] <AdcsDbViewTableName>] [<CommonParameters>]

Description

Retrieves Certification Authority database schema depending on selected table. Default table is 'Request' table.

Parameters

-CertificationAuthority <CertificateAuthority[]>

Specifies the Certification Authority object. This object can be retrieved by running Get-CertificationAuthority command.

Required? True
Position? 0
Default value
Accept pipeline input? true (ByValue, ByPropertyName)
Accept wildcard characters? False

-Table <AdcsDbViewTableName>

Specifies the Certification Authority object. This object can be retrieved by running Get-CertificationAuthority command.

Required? False
Position? 1
Default value Request
Accept pipeline input? false
Accept wildcard characters? False

<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, InformationAction, InformationVariable,
WarningAction, WarningVariable, OutBuffer, PipelineVariable and OutVariable.
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).

Inputs

PKI.CertificateServices.CertificateAuthority

Outputs

SysadminsLV.PKI.Management.CertificateServices.Database.AdcsDbColumnSchema

Notes

Author: Vadims Podans
Blog: https://www.sysadmins.lv

Examples

Example 1

PS C:\> Get-CertificationAuthority -Name MyCA* | Get-CASchema

Returns database schema for Certification Authority objects which name starts with "MyCA".

Example 2

PS C:\> Get-CertificationAuthority | Get-CASchema

Returns database schema for all Enterprise Certification Authority objects in the current forest.

Related links

Get-CertificationAuthority
Connect-CertificationAuthority

Minimum PowerShell version support

  • PowerShell 3.0

Operating System Support

  • Windows Server 2003 all editions
  • Windows Server 2008 all editions
  • Windows Server 2008 R2 all editions
  • Windows Server 2012 all editions
  • Windows Server 2012 R2 all editions
  • Windows Server 2016 all editions

Share this article: