Summary: Find all of the Windows PowerShell Active Directory Domain Services cmdlets.
How can I find all of the Windows PowerShell Active Directory cmdlets?
On a domain controller, or a computer that has the Remote Server Admin tools (RSAT) installed, import the ActiveDirectory module (using Import-Module, where ipmo is the alias), and then use the Get-command cmdlet (gcm is the alias) to list the cmdlets, as shown here.
ipmo act*
gcm -Module act*