ĐÀO TẠO DOANH NGHIỆP : SỞ KHOA HỌC CÔNG NGHỆ TỈNH ĐỒNG NAI

ENTERPRISE TRAINING: DONG NAI DEPARTMENT OF SCIENCE AND TECHNOLOGY.

HÌNH ẢNH TẬP HUẤN LỚP SHAREPOINT WORKFLOW VÀ KIẾN TRÚC SHAREPOINT

PHOTOS OF SHAREPOINT WORKFLOW AND ARCHITECTURE CLASS.

HÌNH ẢNH TẬP HUẤN LỚP SHAREPOINT WORKFLOW VÀ KIẾN TRÚC SHAREPOINT

PHOTOS OF SHAREPOINT WORKFLOW AND ARCHITECTURE CLASS.

Thursday, September 24, 2015

export and import lists and libraries full version and permission

How to export and import lists and libraries full version and permission
Exporting

# specify the site URL to export

$web = Get-SPWeb "microsofttechnology.net/sites/sharepoint"

# specify output folder to store exported lists

$path = "D:\SharepointLists"

foreach($list in $web.lists)

{

"Exporting " + $list.RootFolder.URL

export-spweb $web.URL -ItemUrl $list.RootFolder.URL -IncludeUserSecurity -IncludeVersions All -path ($path + $list + ".cmp")

}

Importing

# specify target SharePoint site to import into

$site = "microsofttechnology.net/sites/sharepoint1"

# specify folder containing exported lists

$folder = "D:\SharepointLists"

$Files = Get-ChildItem $folder

foreach ($file in $files)
{

$name = $file.Name

"Importing: " + "$folder$name"

import-spweb $site -path ("$folder$name") -includeusersecurity –UpdateVersions Overwrite
}

Wednesday, September 2, 2015

Error SharePoint Designer does not support editing non-SharePoint sites


Error SharePoint Designer does not support editing non-SharePoint sites



Close SharePoint Designer and Reopen it. The issue will be solved.
Done!!!