Import-SPWeb

How to export / and import SharePoint 2013 sites, lists, or libraries with PowerShell

For copying individual items across your SharePoint 2013 environments or making single item backups of  sites, lists, or libraries you may employ following PowerShell commandlets: Export-SPWeb and Import-SPWeb. Here is a basic example of performing library export and further import using those cmdlets. First, export: Export-SPWeb -Identity http://sitename.domainname.com -ItemUrl /Library_Name -path “c:\Library_Name_Backup.cmp” The only thing How to export / and import SharePoint 2013 sites, lists, or libraries with PowerShell