Contents tagged with application
-
C# Console Application and Office 365
https://www.helloitsliam.com/2016/01/28/c-console-application-and-office-365-2/ more
-
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