Monthly Archives: September 2017

Renaming Admin Content Database and Other Content Databases in SharePoint using Powershell

Follow the below procedure to rename and attach the admin content database and other content databases. Log on to the SharePoint Server with Farm Account (Normally i do all stuffs in SharePoint using Farm Account as it has the highest … Continue reading

Posted in Articles | Leave a comment

Getting details of the master page and Setting up Master Page using PowerShell in SharePoint 2013

Get the Master Page details: $site = Get–SPSite http://yourSiteUrl/ $web = $site.RootWeb $web.CustomMasterUrl //This will give the url of the custom master used. $web.MasterUrl //This will give the url of the master page used. $web.AlternateCssUrl //This will give url of … Continue reading

Posted in Articles | Leave a comment

Download all files from the SharePoint Document Library on Local Drive

This Script will allow you to download files from SharePoint Document Library to Local disk or Shared drive. PowerShell Script: ####### Script to download all files from Document Library####### $destination = “C:\\temp\\Folder” $webUrl = “<Url of the specific site>” $listUrl … Continue reading

Posted in Articles | Leave a comment