Trusts

Get a list of all domain trusts for the current domain

Get-DomainTrust
Get-DomainTrust -Domain us.dollarcorp.moneycorp.local
Get-DomainTrust -API
Get-DomainTrust -NET

Get-ADTrust

Get-ADTrust -Identity us.dollarcorp.moneycorp.local

Get details about the current forest

Get-Forest
Get-Forest -Forest eurocorp.local
Get-ADForest
Get-ADForest -Identity eurocorp.local

Get all domains in the current forest

Get-ForestDomain
Get-ForestDomain -Forest eurocorp.local
(Get-ADForest).Domains

Get all global catalogs for the current forest

Get-ForestGlobalCatalog
Get-ForestGlobalCatalog -Forest eurocorp.local
Get-ADForest | select -ExpandProperty GlobalCatalogs

Map trusts of a forest (no Forest trusts in the lab)

Get-ForestTrust
Get-ForestTrust -Forest eurocorp.local
Get-ADTrust -Filter 'msDS-TrustForestTrustInfo -ne
	"$null"'

Last updated