PoshCode Archive  Artifact [ae3d146385]

Artifact ae3d146385dc85da031f70bfffdc05d07c440ec8edc3daf68d51a13d3fa69793:

  • File List-AD-Attributes.ps1 — part of check-in [297f1f9e58] at 2018-06-10 13:15:19 on branch trunk — List active directory attributes from schema (user: BSonPosh size: 722)

# encoding: ascii
# api: powershell
# title: List AD Attributes
# description: List active directory attributes from schema
# version: 0.1
# author: BSonPosh
# license: CC0
# x-poshcode-id: 2755
# x-archived: 2011-07-06T05:04:19
# x-published: 2011-06-28T05:44:00
#
#
$forest = [DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()
$Schema = $forest.schema 
$Properties = $Schema.FindAllProperties()
foreach($property in $Properties)
{
   "#################################"
   "Name:   {0}" -f $property.Name
   "Link:   {0}" -f $property.link
   "LinkID: {0}" -f $property.linkid
   if(!$?)
   {
        "Error: {0}" -f $error[0].message
   }
   "#################################"
}