This is a step by step guide on how you migrate your SharePoint’s (I used 2010 version in this instance) SQL Server to an new SQL Server host. In this exercise I tried migrating it in a new version of… Read More ›
Servers
Add server to existing farm using powershell sharepoint2013
I am building a new 3-tier farm. I have already configured the application and database servers and am now ready to add another which will be used as the web front end. I have already installed the pre-requisites and binaries… Read More ›
IIS Reset on all SP Servers using PowerShell
This script will list all SP Servers and restarts IIS on all of them. add-PSSnapin microsoft.sharepoint.powershell $spserver = get-spserver | ?{$_.role -eq “Application”} foreach ($server in $spserver) { write-host “Performing IIS Reset on Server:”$server.name iisreset $server.Name }