• 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.
  1. $context = Connect-SPOSite https://gauti.sharepoint.com
  2. # The SharePoint web at the URL.
  3. $web = $context.Web
  4. $web.Title = "Title"
  5. $web.Description = "New Description"
  6. $web.Update()
  7. $context.ExecuteQuery()
Run the script with the required administrator privilege. To verify that, Check the output window.Thanks for reading my blog.
Hope you have enjoyed this.