开发者

Sharepoint Publish After Test

We have test and prod environment for a publishing portal. What i want to make is keeping synced both environment.

Currently, we make changes on test server and publish content开发者_运维百科, check the modified pages and if everything is ok we then make same changes on prod server.

Is there any other short way or command to update prod server with last changes made in test server, not doing the same things again and again.

Thanks..


On Sharepoint 2010 it's preatty simple: you could run a command in PS to first export the content you need from Test environemnt and then import that content on the Prod Server:

// on Test Environment

Export-SPWeb webrooturl -path "fullpathfile.cmp" -includeVersions LastMajor -itemurl Pages -FORCE

This command create a file .cmp that contains all the latest major version of items in Pages library. then you have to copy that file .cmp on the target server (Prod) and run

// on Prod Environment

Import-SPWeb webrooturl -path "fullpathfile.cmp"

I used it only for Pages library and works fine, but I think that operating with the parameter -itemurl it should be possible to export all the other library contents.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜