SharePoint: Powershell Script to get the List of Sites under a Web Application

  1. $LogTime = Get-Date -Format yyyy-MM-dd_hh-mm  
  2. $LogFile = ".\GetSubsitePatch-$LogTime.rtf"  
  3.  
  4. # Add SharePoint PowerShell Snapin  
  5.   
  6.   
  7. if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null ) {  
  8.     Add-PSSnapin Microsoft.SharePoint.Powershell  
  9. }  
  10.   
  11. $scriptBase = split-path $SCRIPT:MyInvocation.MyCommand.Path -parent  
  12. Set-Location $scriptBase  
  13.  
  14.  
  15. #Deleting any .rtf files in the scriptbase location  
  16. $FindRTFFile = Get-ChildItem $scriptBase\*.* -include *.rtf  
  17. if($FindRTFFile)  
  18. {  
  19.  foreach($file in $FindRTFFile)  
  20.   {  
  21.    remove-item $file  
  22.   }  
  23. }  
  24.   
  25.   
  26. start-transcript $logfile  
  27.   
  28. $Output = $scriptBase + "\" + "SiteDetails.csv";  
  29. "WebApplication" + "," + "SiteCollection" + "," + "Webs" | Out-File -Encoding Default -FilePath $Output;  
  30. $webapp = read-host "Enter the web app URL under which you want to list out the subsites"  
  31. $testWebApp = get-spwebapplication $webapp -ea silentlycontinue  
  32. if($testWebApp -ne $null)  
  33. {  
  34. $empty = ""  
  35. $webapp + "," + $empty + "," + $empty | Out-File -Encoding Default  -Append -FilePath $Output;  
  36. $sites = get-spsite -limit all -webapplication $webapp  
  37. foreach($site in $sites)  
  38. {  
  39.  $empty + "," + $site.url + "," + $empty | Out-File -Encoding Default  -Append -FilePath $Output;  
  40.  foreach($web in $site.allwebs)  
  41.  {  
  42.   Write-host $web.url -fore cyan  
  43.   $empty + "," + $empty + "," + $web.url | Out-File -Encoding Default  -Append -FilePath $Output;  
  44.  }  
  45. }  
  46. }  
  47. else  
  48. {  
  49.  write-host "Invalid Web app.... please check the URL" -fore cyan  
  50. }  
  51.   
  52. stop-transcript