
Hi @Anonymous ,
Do you want to copy a site collection to another web application or another farm in SharePoint? Well, follow these steps to copy site collection to same/another farm.
- Create a new Web application
- Backup the live site collection
- Restore the backup into the target web application
- Backup the Source Site Collection: Backup-SPSite -Identity "http://contoso.com" -Path "D:\backup\portal.bak" -Force -NoSiteLock -Confirm:$False
- Restore the backup into Target Site collection: Restore-SPSite "http://Astralis.com" -Path "D:\backup\portal.bak" -Force -Confirm:$False
You can use this method to copy a site collection to same server or another server or another web application in SharePoint. Remember to do the following: Install & Deploy any Farm level feature to the newly created Web Application from Central Admin; Configure Web App settings, such as: Web Application policy, Outgoing Email settings, etc.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.