Contents tagged with rename
-
Rename a Sharepoint Web Application
Must be done in Sharepoint Management Shell (Powershell)
$WebApp = SPWebApplication | where {$_.Name -match "OldWebAppName"}$WebApp.Name ="NewWebAppName"$WebApp.Update()# This bit is just to … more
-
Rename Azure Username with Powershell
https://docs.microsoft.com/en-us/powershell/module/msonline/set-msoluserprincipalname?view=azureadps-1.0 more