Monday, May 13, 2013

How to change SharePoint Web Application Name

In SharePoint Management Window:

$a=Get-SPWebApplication | where {$_.Name -match "Old web application name"}
$a.Name
$a.Name="New web application name"
$a.Update()
Get-SPWebApplication | where {$_.Name -match "New web application name"}