SharePoint 2016 IIS Application Pools

In server Configuration manager, go to tools > IIS. Be careful, IIS 6.0 is for SMTP, we are using IIS 8   From here we can see which application pools are running If you click recycling, you will see that these are recycled early, early, early in the morning. You can change that behavior, but … More SharePoint 2016 IIS Application Pools

Restoring SharePoint 2010 content database

–Step 1: Retrieve the Logical file name of the database from backup. RESTORE FILELISTONLY FROM DISK = ‘E:\SQL\Backup\SQLSHAREPOINT_WSS_Content_FULL_20170824_001437.bak’ GO –Step 2: Use the values in the LogicalName Column in following Step. —-Make Database to single user Mode ALTER DATABASE [WSS_Content_Restore] SET SINGLE_USER WITH ROLLBACK IMMEDIATE —-Restore Database RESTORE DATABASE [WSS_Content_Restore] FROM DISK = N’E:\SQL\Backup\SQLSHAREPOINT_WSS_Content_FULL_20170824_001437.bak’ WITH FILE = 1, MOVE N’WSS_Content’ TO N’E:\SQL\Data\WSS_Content_Restore.mdf’, MOVE N’WSS_Content_log’ … More Restoring SharePoint 2010 content database