change sharepoint site url rename subsite url

User need to change sharepoint site url or site collectiion url that we call as top level site and rename the url of subsite of as well. Rename and change subsite address or url is not much difficult but change site url top level needs special attention. Renaming the site name not change the url, we need powershell to achive this. Run the below powershell command metioned below to change url of site in sharepoint.

$site = Get-SPSite http://win-q2repghf9du:44179/sites/SharePointTechnicalSupport
$site.Rename("http://win-q2repghf9du:44179/sites/SPMCSE")
Advertisements

After running the powershell script do an iis reset.

iisreset
Change sharepoint site collection url rename subsite url
Advertisements
Advertisements

sharepoint online power user playbook

sharepoint online power user playbook is my first book going to launch very soon. This is the first look received regarding my book sharepoint online. Very excitied and hopeful on this book. Tried my best to include content cosidering every angle in sharepoint real life production support work. Hope you too will like this book once go thorugh it.

SharePoint online power user playbook
SharePoint online power user playbook
SharePoint online power user playbook back page
SharePoint online power user playbook
SharePoint online power user playbook

SharePoint 2019 feature id feature using powershell

SharePoint 2019 feature id and feature list you can find out using powershell. You will understand basic powershell commands related to Get-SPFeature so as to get sharepoint feature details and features related ot this sharepoint feature id. Follow step by step procesure to find out how to get sharepoint 2019 features id and features.

Advertisements

Get all sharepoint 2019 feature ids using the command below. Click here to download all feature ids in excel format for reference.

Get-SPFeature | Format-Table -AutoSize
SharePoint 2019 feature id
SharePoint 2019 feature id
Advertisements

Get SharePoint 2019 all feature id scope farm

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "FARM"} | Format-Table -AutoSize
SharePoint 2019 feature id scope farm
Advertisements

Get SharePoint 2019 all feature id scope web application

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "WEBAPPLICATION"} | Format-Table -AutoSize
SharePoint 2019 feature id scope web application
Advertisements

Get SharePoint 2019 all feature id scope site

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "SITE"} | Format-Table -AutoSize
SharePoint 2019 feature id scope site
Advertisements

Get SharePoint 2019 all feature id scope web

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "WEB"} | Format-Table -AutoSize
SharePoint 2019 feature id scope web
Advertisements

Get SharePoint 2019 feature id of all site with in site collection

Get-SPSite http://win-56r9d2tbfob:39760 | Get-SPWeb -Limit ALL |%{ Get-SPFeature -Web $_ } | Select DisplayName,ID -Unique | Format-Table -AutoSize
SharePoint 2019 feature id of all site with in site collection
Advertisements

Get SharePoint 2019 feature id of site

Get-SPFeature -Site http://win-56r9d2tbfob:39760
SharePoint 2019 feature id of site
Advertisements

Get feature id of one feature

Get-SPFeature -Site http://win-56r9d2tbfob:39760
SharePoint 2019 feature id of one feature
Advertisements

enable specific site feature id

Enable-SPFeature -Identity 7c637b23-06c4-472d-9a9a-7c175762c5c4 -Url http://win-56r9d2tbfob:39760
enable specific site feature id
Advertisements

disable specific site feature id

Disable-SPFeature -Identity 7c637b23-06c4-472d-9a9a-7c175762c5c4 -Url http://win-56r9d2tbfob:39760
disable specific site feature id
Advertisements

SharePoint 2019 feature id feature list using powershell | #SharePoint2019, #Powershell

Advertisements