- Start your windows PowerShell on your computer.
- Right click and select Run as administrator option.
- Paste the below script on the PowerShell window and click the enter button.
- Check your SharePoint site Feature will activated successfully.
- $context = Connect-SPOSite https://gauti.sharepoint.com
- # The SharePoint web at the URL.
- $web = $context.Web
- $web.Title = "Title"
- $web.Description = "New Description"
- $web.Update()
- $context.ExecuteQuery()
Hope you have enjoyed this.

Vijay SPosted Jun 17, 2015, 9:20 AM
Good one