How to restore SharePoint 2013 / 2016/ 2019 site collection from site backupScenarioRecently for a vendor based revamped project, vendor provided us site backup instead to restore on our Dev / QA environment. To quickly restore a site collection with SharePoint 2013 / 2016 / 2019 environment from site backup I used following power shell command.Restore-SPSite -Identity "http://SharePoint/site/"-Path C:\Vendor_SiteBackup\v2.0\SomeBackupname.bak -ForceHere -force optional parameter will be used to overwrite existing site collection...
Saturday, October 9, 2021
Powershell : Resotre a site collection from backup
By kamig
2:52 AM
Power Shell,
sharepoint,
SharePoint 2013,
SharePoint 2016,
SharePoint 2019
Leave a Comment
Read More
Thursday, October 7, 2021
Powershell: save list and library as template in sharepoint 2013 / 2016 / 2019
By kamig
12:10 AM
Power Shell,
sharepoint,
SharePoint 2013,
SharePoint 2016,
SharePoint 2019
Leave a Comment
Business Scenario This is quite usual scenario where developers or site admin have to move newly create list or libraries from Dev environment to Staging / Production. This blog will show options for doing it manually as well as through Powershell. This is series of blog where:Save list / library with or without data as list template through powershell.Create new list / library using template through powershell Manual...