TwitterLinkedInBlog

Wednesday, January 15, 2014

BackConnectionHostNames Registry Location

BackConnectionHostNames Registry Location:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0

(Used to specify the host names that are mapped to the loopback address and can connect to Web sites on your computer)

Monday, January 13, 2014

Rename Web Application and Alternate Access Mapping Collection

$wa = Get-SPWebApplication | where {$_.Name -match "localhost - 80"}
$wa.Name = "My Web App"
$wa.Update()
$aamc = $wa.AlternateUrls
$aamc.Name = "My Web App"
$aamc.Update()


Resources:
http://www.topsharepoint.com/rename-web-application-in-sharepoint-2010