by jeremy@bondbyte.com | Apr 11, 2014 | Powershell, SharePoint 2010, SharePoint 2013
I had a request to turn on all access requests or notifications on all sites with a web application. PowerShell is your best bet for doing these types of occasional tasks. This script will turn access requests on for all sites. Change the email address below to the...
by jeremy@bondbyte.com | Apr 11, 2014 | SharePoint 2013, Visual Studio, Web Parts
This Web Part returns an HTML list of all sub-sites with hyperlinks. The Web Part HTML contains CSS References that can be used to change the containing div(s). Download GetSubsiteWP Code...
by jeremy@bondbyte.com | Mar 12, 2014 | Powershell, SharePoint 2010, SharePoint 2013
This PowerShell script will enumerate through all sites in the collection and return any sites that contain a given group name. Replace the red text, Administrative Members with the name of the group. # Get All Web Application $webApp=Get-SPWebApplication # Get All...
by jeremy@bondbyte.com | Mar 12, 2014 | Powershell, SharePoint 2013
This PowerShell Script returns all sites that have a list with workflows. It pipes to an output file named output.txt $webApp=Get-SPWebApplication “Powershell script by Jeremy @ http://www.BondByte.com” | Out-File output.txt ” ” | Out-File...