Category: Sharepoint
-
Configuring Forms Based Authentication in SharePoint 2013 – Part 3 – Editing the Web.Config Files
Configuring forms based authentication (FBA) in SharePoint 2013 is very similar to SharePoint 2010, but there are some differences due to SharePoint 2013 using .Net 4.0. The web.config entries entries are slightly different. As well, IIS doesn’t support editing .Net 4.0 membership provider configuration through the IIS interface, so all of the configuration has to…
-
Configuring Forms Based Authentication in SharePoint 2013 – Part 2 – Adding users to the Membership Database
Configuring forms based authentication (FBA) in SharePoint 2013 is very similar to SharePoint 2010, but there are some differences due to SharePoint 2013 using .Net 4.0. The web.config entries entries are slightly different. As well, IIS doesn’t support editing .Net 4.0 membership provider configuration through the IIS interface, so all of the configuration has to…
-
Configuring Forms Based Authentication in SharePoint 2013 – Part 1 – Creating the Membership Database
Configuring forms based authentication (FBA) in SharePoint 2013 is very similar to SharePoint 2010, but there are some differences due to SharePoint 2013 using .Net 4.0. The web.config entries entries are slightly different. As well, IIS doesn’t support editing .Net 4.0 membership provider configuration through the IIS interface, so all of the configuration has to…
-
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.
-
Performance Profiling a SharePoint 2010 Project using EQATEC Profiler
I wanted to profile a SharePoint 2010 project i’d been working on, in order to find some of the slower methods so that they could be improved. I decided to give EQATEC Profiler a try since it had some good recommendations on StackOverflow and was FREE. EQATEC works by modifying and rebuilding your assemblies. Since…