--- title: "Create Lanteria HR Backup Package" slug: "create-lanteria-hr-backup-package" updated: 2023-02-24T21:48:48Z published: 2023-02-24T21:48:48Z canonical: "help.lanteria.com/create-lanteria-hr-backup-package" --- > ## Documentation Index > Fetch the complete documentation index at: https://help.lanteria.com/llms.txt > Use this file to discover all available pages before exploring further. # Create Lanteria HR Backup Package To create the Lanteria HR backup, you are to perform the following two steps: - [Download the Lanteria HR solution files](/v1/docs/create-lanteria-hr-backup-package#download-solution-files) - [Back up the content database](/v1/docs/create-lanteria-hr-backup-package#back-up-the-content-database) ## Download Solution Files The first step in the backup process is downloading the Lanteria HR solution files. Please follow the steps below: 1. Access the SharePoint WFE of the farm, where Lanteria HR is installed. 2. Download the solution files from farm solution storage. This can be done with the following PowerShell script: [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") $solutioname = " " #soltuion name here $path = " " #destination folder path $farm = [Microsoft.sharepoint.administration.spfarm]::Local $solution = $farm.Solutions[$solutioname] $file = $solution.SolutionFile $file.SaveAs($path +"/" + $solutioname) Required solution files: - Lanteria.EffectiveStaff.wsp - SharePointLearningKit.wsp ## Back up the Content Database After the solution files have been downloaded, proceed to creating the content database backup. 1. Access the SharePoint WFE of the farm, where LanteriaHR is installed. 2. Disable the custom features with the following PowerShell scripts: $webURL = " " #URL of the LanteriaHR site, i.e. http://hr-uat.test/es/ $siteURL = " " #URL of the parent LanteriaHR site collection, i.e. http:// hr-uat.test Disable-SPFeature lanteria.es.sharepoint_lanteriasite -URL $siteURL -confirm:$false Disable-SPFeature lanteria.es.sharepoint_lanteriaweb -URL $webURL -confirm:$false Disable-SPFeature lanteria.es.sharepoint_lanteriacontent -URL $webURL -confirm:$false 3. Check the content Database Name of the parent LanteriaHR site collection using Central Administration > Application Management > View All Site Collections. ![](https://cdn.document360.io/c315c68d-2799-4fcc-9a39-084315b58f14/Images/Documentation/image-1674754515399.png) 4. Access the SharePoint farm SQL instance with SQL Management Studio. 5. Select and back up the content database. 6. Select and back up SharePointLearningKit Database. 7. Select and back up ESDB_ database. 8. Enable the features back: Enable-SPFeature lanteria.es.sharepoint_lanteriasite -URL $siteURL Enable-SPFeature lanteria.es.sharepoint_lanteriaweb -URL $webURL Enable-SPFeature lanteria.es.sharepoint_lanteriacontent -URL $webURL After running the steps above, you should get the following files: - Lanteria.EffectiveStaff.wsp - SharePointLearningKit.wsp - Content Database backup - SharePointLearningKit Database backup (for the Learning module only) - ESDB Database backup