export import list library sites in sharepoint

export import list library sites in sharpoint 2019 is a common task for sharepoint administrator carried out during migration. You will get requests from user to move or copy, sharepoint list, libraries, sites from one site to another site. Site may be present in different web application under different sharepoint environment(PROD, DEV, SIT). Site between different sharepoint versions (SharePoint 2010 to SharePoint 2013 or SharePoint 2013 to SharePoint 2016 or SharePoint 2019).

Advertisements

You can migrate contents from one site to another site using backup restore site collection method, if size of content is large. We already discussed how to create backup restore request and follow content database detach attach method in previous post as below.

Advertisements

Dismount Mount content database in sharepoint 2019 using powershell“. You can follow this to complete the task.

You can export list library sites to migrate contents only, size of content to be migrate is not so high. Once export is complete, you need to import list library in destination sharepoint site.

You can export import sharepoint list library using powershell or by using granular backup export a site or list method.

Advertisements

follow the command below Export-SPWeb to export sharepoint site collection

Export-SPWeb -Identity "<site collection url>" -Path "saving path"
Export-SPWeb -Identity "http://win-56r9d2tbfob:39760/sites/SharePointTechnicalSupport" -Path "C:\Backup\Site Collection\sitecollectionPS.cmp"
Advertisements

following command will export subsite in sharepoint

Export-SPWeb -Identity "subsite url" -Path "saving path" -verbose
Export-SPWeb -Identity "http://win-56r9d2tbfob:39760/sites/SharePointTechnicalSupport/SubsiteTeams" -Path "C:\Backup\SubsiteSite\SubsitePS.cmp" -verbose
Advertisements

export list in sharepoint following below command

Export-SPWeb -Identity "subsite url" -Path "saving location" -ItemUrl "list path" -IncludeUserSecurity -IncludeVersions All -verbose
Export-SPWeb -Identity "http://win-56r9d2tbfob:39760/sites/SharePointTechnicalSupport/SubsiteTeams" -Path "C:\Backup\List\List.cmp" -ItemUrl "Lists/ContactList" -IncludeUserSecurity -IncludeVersions All -verbose
Advertisements

following command will export library in sharepoint

Export-SPWeb -Identity "subsite url" -Path "saving location" -ItemUrl "library name" -IncludeUserSecurity -IncludeVersions All -verbose
Export-SPWeb -Identity "http://win-56r9d2tbfob:39760/sites/SharePointTechnicalSupport/SubsiteTeams" -Path "C:\Backup\Library\Documents.cmp" -ItemUrl "Shared Documents" -IncludeUserSecurity -IncludeVersions All -verbose
Advertisements

Import list in sharepoint following below command

Import-SpWeb -Identity "site url in which you want to import list" -Path "exported item saved location" -IncludeUserSecurity -UpdateVersions Overwrite -verbose
Import-SpWeb -Identity "http://win-56r9d2tbfob:19919/sites/SPSupport" -Path "C:\Backup\List\List.cmp" -IncludeUserSecurity -UpdateVersions Overwrite -verbose
Advertisements

following command will import library in sharepoint

Import-SpWeb -Identity "site url in which you want to import library" -Path "exported item saved location" -IncludeUserSecurity -UpdateVersions Overwrite -verbose
Import-SpWeb -Identity "http://win-56r9d2tbfob:19919/sites/SPSupport" -Path "C:\Backup\Library\Documents.cmp" -IncludeUserSecurity -UpdateVersions Overwrite -verbose
Advertisements

similarly use follow the command below to Import site in sharepoint

Import-SpWeb -Identity "http://win-56r9d2tbfob:19919/sites/SPSupport" -Path "C:\Backup\SubsiteSite\SubsitePS.cmp" -IncludeUserSecurity -UpdateVersions Overwrite -verbose
Advertisements

watch below video to get more in detail.

Advertisements

SharePoint 2019 feature id feature using powershell

SharePoint 2019 feature id and feature list you can find out using powershell. You will understand basic powershell commands related to Get-SPFeature so as to get sharepoint feature details and features related ot this sharepoint feature id. Follow step by step procesure to find out how to get sharepoint 2019 features id and features.

Advertisements

Get all sharepoint 2019 feature ids using the command below. Click here to download all feature ids in excel format for reference.

Get-SPFeature | Format-Table -AutoSize
SharePoint 2019 feature id
SharePoint 2019 feature id
Advertisements

Get SharePoint 2019 all feature id scope farm

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "FARM"} | Format-Table -AutoSize
SharePoint 2019 feature id scope farm
Advertisements

Get SharePoint 2019 all feature id scope web application

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "WEBAPPLICATION"} | Format-Table -AutoSize
SharePoint 2019 feature id scope web application
Advertisements

Get SharePoint 2019 all feature id scope site

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "SITE"} | Format-Table -AutoSize
SharePoint 2019 feature id scope site
Advertisements

Get SharePoint 2019 all feature id scope web

Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "WEB"} | Format-Table -AutoSize
SharePoint 2019 feature id scope web
Advertisements

Get SharePoint 2019 feature id of all site with in site collection

Get-SPSite http://win-56r9d2tbfob:39760 | Get-SPWeb -Limit ALL |%{ Get-SPFeature -Web $_ } | Select DisplayName,ID -Unique | Format-Table -AutoSize
SharePoint 2019 feature id of all site with in site collection
Advertisements

Get SharePoint 2019 feature id of site

Get-SPFeature -Site http://win-56r9d2tbfob:39760
SharePoint 2019 feature id of site
Advertisements

Get feature id of one feature

Get-SPFeature -Site http://win-56r9d2tbfob:39760
SharePoint 2019 feature id of one feature
Advertisements

enable specific site feature id

Enable-SPFeature -Identity 7c637b23-06c4-472d-9a9a-7c175762c5c4 -Url http://win-56r9d2tbfob:39760
enable specific site feature id
Advertisements

disable specific site feature id

Disable-SPFeature -Identity 7c637b23-06c4-472d-9a9a-7c175762c5c4 -Url http://win-56r9d2tbfob:39760
disable specific site feature id
Advertisements

SharePoint 2019 feature id feature list using powershell | #SharePoint2019, #Powershell

Advertisements

sharepoint timer job view start manage status check history using powershell

This post sharepoint timer job view start manage status check history using powershell describes how to view timer job status, start timer job , manage timer job, get timer job history using powershell. Follow the step by step process as described below.

how to find all sharepoint timer jobs in sharepoint server using powershell. Run below powershell commad to get details

Advertisements
Get-SPTimerJob | Format-Table -AutoSize
sharepoint timer job view start manage status check history
Advertisements

export all sharepoint timer jobs using powershell running below command

Get-SPTimerJob | Export-Csv "C:\AllTimerJobs.csv"
Advertisements

so as to get specefic timer jobs in sharepoint using powershell run below command

Get-SPTimerJob job-ceip-datacollection | Format-Table -AutoSize
sharepoint timer job view start manage status check
Advertisements

Get sharepoint timer job name and display name using powershell

Get-SPTimerJob | select Name, DisplayName
sharepoint timer job view start manage status
Advertisements
Get-SPTimerJob -WebApplication "http://win-56r9d2tbfob" | select Name, DisplayName
sharepoint timer job view start manage status check history powershell
Advertisements

Run below powershell command to get sharepoint timer job starting with name “user”

Get-SPTimerJob | Where-Object {$_.Name –like “*user*”} | Format-Table -AutoSize
sharepoint timer job powershell view start
Advertisements

Run below powershell command to get sharepoint timer job history like last time timer job run, last time job endtime, timer job status

Get-SPTimerJob | select -ExpandProperty HistoryEntries
get sharepoint timer job status check
Advertisements

Run below powershell command to get particular sharepoint timer job history

Get-SPTimerJob -Identity DocumentSetTemplateUpdate | select -ExpandProperty HistoryEntries
sharepoint timer job status check history
Advertisements

Run below powershell command to get sharepoint timer job history starting with “”

Get-SPTimerJob | Where-Object {$_.Name –like “*DocumentSetTemplateUpdate*”} | select -ExpandProperty HistoryEntries
timer job status sharepoint
Advertisements

sharepoint timer job powershell view start manage status check history | #SharePoint2019 #Powershell

Advertisements