
3,735 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How can a make a copy of a Site Collection and to another Web Application?
Hi @Michael Williams ,
Please follow the below steps:
Backup-SPSite https://source-sitecoll-url -Path "C:\Backup\sourcesitecollection.bak"
This command will take the backup of the site collection and store it inside the `bak` file on the server.
Restore-SPSite https://destination-sitecoll-url -Path "C:\Backup\sourcesitecollection.bak" -Force
This will restore the site collection from the backup file. Here, `Force` parameter is optional.
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.