top of page

PowerShell - Get Subnet to Site Details

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 11, 2022
  • 1 min read

Copy and paste or save as a named.ps1, this will output ALL subnets that are hosted per site on the Domain and output to c:\temp\Sites.csv

[cmdletbinding()]

param()


$Sites = [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest().Sites

$obj = @()

foreach ($Site in $Sites) {

foreach($sub in $site.subnets){


$obj += New-Object -Type PSObject -Property (

@{

"SiteName" = $site.Name

"SubNet" = $sub.name

}

)}

}

$obj | Export-Csv 'c:\temp\sites.csv' –NoType


 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page