PowerShell Script to rename a SiteCollection
Here are renaming the site from energimiljo to Energymill
cls
asnp "*sh*"
$site=Get-SPSite -Identity
"http://SP2013dev.com/sites/energimiljo/"
$site.Rename("http://SP2013dev.com/sites/energymills")
$site.Dispose()
No comments:
Post a Comment