ActiveDirectorySitesLinksReport.ps1

something exciting

Some information about the exciting thing

Table of contents generated with markdown-toc


Script

<#

  Active Directory Site Link Reporting

  Original script written by Ashley McGlone, Microsoft PFE, June 2011
  Report and Edit AD Site Links From PowerShell:
    http://blogs.technet.com/b/ashleymcglone/archive/2011/06/29/report-and-edit-ad-site-links-from-powershell-turbo-your-ad-replication.aspx

#>

#-------------------------------------------------------------
# Get the script path
$ScriptPath = { Split-Path $MyInvocation.ScriptName }
$SiteLinksReport = $(&$ScriptPath) + "\ActiveDirectorySiteLinksReport.csv"

#----------------------Site Link Report-----------------------

Import-Module -Name ActiveDirectory

# Report of all site links and related settings
$AllSiteLinks = Get-ADObject -Filter 'objectClass -eq "siteLink"' -Searchbase (Get-ADRootDSE).ConfigurationNamingContext -Property Description, Options, Cost, ReplInterval, SiteList, Schedule | Select-Object Name, Description, @{Name = "SiteCount"; Expression = { $_.SiteList.Count } }, Cost, ReplInterval, @{Name = "Schedule"; Expression = { If ($_.Schedule) { If (($_.Schedule -Join " ").Contains("240")) { "NonDefault" }Else { "24x7" } }Else { "24x7" } } }, Options

#$AllSiteLinks | Format-Table * -AutoSize
$AllSiteLinks | Export-Csv -NoTypeInformation "$SiteLinksReport"

#Remove the quotes
(Get-Content "$SiteLinksReport") | ForEach-Object { $_ -replace '"', "" } | Out-File "$SiteLinksReport" -Force -Encoding ascii

Back to Top


Download

Please feel free to copy parts of the script or if you would like to download the entire script, simple click the download button. You can download the complete repository in a zip file by clicking the Download link in the menu bar on the left hand side of the page.


Report Issues

You can report an issue or contribute to this site on GitHub. Simply click the button below and add any relevant notes. I will attempt to respond to all issues as soon as possible.

Issue


Back to Top