How to change the Port Number on Web Application in SharePoint
Date: 13/05/2014
Categories: PowerShell, SharePoint
#Use SharePoint 2013 Management Shell #Script PowerShell # $WebApp is the Web Application URL $WebApp = "http://webapplication:80100" # $WebAppNew is the New Web Application URL $WebAppNew = "http://webapplication:4100" Set-SPAlternateURL -Identity $WebApp -Zone Default -Url $WebAppNew
Leave a Reply