Month: November 2011

  • Adding Breadcrumb Navigation to SharePoint 2010 Application Pages

    The application pages in my SharePoint 2010 FBA Pack were not properly displaying the breadcrumb navigation. They didn’t include ‘Site Settings’ in the navigation – they went straight from Home to the application page. I used the following blog entry to add the breadcrumb navigation: http://weblogs.asp.net/jan/archive/2008/04/16/adding-breadcrumb-navigation-to-sharepoint-application-pages-the-easy-way.aspx Unfortunately after making the changes, I still didn’t see…

  • Bulk Delete SharePoint Site Users with PowerShell

    Below is a PowerShell script for deleting a filtered list of users from a SharePoint site.  Simply copy the script to a .ps1 file, adjust the $SITEURL to the url of the site and adjust the $USERNAMEFILTER to a lowercase string that is contained in all of the usernames you would like to delete. The…

  • Bulk Delete ASP.NET Membership Users

    Below is a SQL script that can be used to delete a list of users from an ASP.NET membership database.  It retrieves a list of users into a temporary table and then deletes the users from all the relevant tables in the database.