Mar 21 2024 08:17 AM
Hello,
Basically, I need to change the name of a website. However, the following error occurs:
I can change the group name, if it is connected to Teams I change the name too, but the Site name always gets this error. In this case, my template would be GROUP#0
Do you know why this is and how it could be possible to get around it?
Mar 22 2024 12:01 AM
@tcboeira Try using below PnP PowerShell commands once:
$SiteURL = "https://mytenant.sharepoint.com/sites/mysite"
#Connect to SharePoint site
Connect-PnPOnline -Url $SiteURL -Interactive
#Change site title
Set-PnPWeb -Title "New Title"
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Mar 23 2024 01:06 AM