PowerShell script to identify documents with long path names
I wrote this PowerShell script to identify all documents in a site that exceed 256 characters in length. See http://technet.microsoft.com/en-gb/library/ff919564(v=office.14).aspx for more information. Feel free to copy the code and use the script as you see fit (at your own…
Using Get-SPWebTemplate to list available site templates
The New-SPSite PowerShell cmdlet allows you to specify the name of a template to use. If you don’t know the names of all the templates then use the Get-SPWebTemplate command to produce a list: Get-SPWebTemplate | Sort-Object “Name The list…