2016-12-07 9 views
0

パワーシェルスクリプト "Export-SpWeb" http://AAAAA:28769/sites/TargetSite "-ItemUrl"/sites/TargetSite/GA folder "を使用してOnpermisesで実行したようなオンラインサイト(SharePoint Online)をエクスポートする方法はありますか? NoFileCompression -Path "E:\ Temp" "Sharepointオンラインmainfestファイルのエクスポート

特定のサイトのすべてのxmlをエクスポートしますか?

または、mainfest.xmlを含むこれらのxmlを表示するためのツールはありますか?

答えて

0

は、ここでのSharePoint OnlineとOfficeの365

を抽出するためにPnP provisioning frameworkからOfficeDevPnP.PowerShell commandsを使用し、再利用のサイトテンプレートはGitHub上PnP remote provisioningリソースのMSDNの開始概要説明です。

例:

Connect-SPOnline [mySourceUrl] 
Get-SPOProvisioningTemplate -Out demo.xml 
Connect-SPOnline [myDestinationUrl] 
Apply-SPOProvisioningTemplate -Path .\demo.xml 
関連する問題