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...
by ryan k | Mar 3, 2014 | SharePoint 2013
This is one of those, durrrr, why didn’t I think of that solutions. Basically, I have this workflow that sets up data in another column. There was a change to the system and I needed to rerun the workflow for all the items in the list. After some searching, you...
by jeremy@bondbyte.com | Feb 27, 2014 | Error, SharePoint 2013, Visual Studio, Web Parts
I’ve ran into this error several times now. The name ‘InitializeControl’ does not exist in the current context There have been several suggestions on how to fix this, some blogs say to create a new Visual Web Part in the Template folder and copy it...