tags:

views:

155

answers:

2

what is the easiest way to transfer shareoint site along with workflows and people and groups content and all lists contents from one server to other

i tried saving site as template stp with include all content but the workflows are not working anymore and the people and groups are also not replicated on the new server.

A: 

Try exporting the site using stsadm.exe -o export. Use the parameter -includeusersecurity. Are you moving to a different farm? Different domain?

Donaldinio
+2  A: 

stsadm -o backup -url http://oldportal -filename C:\oldportal.dat

take the .dat to the new server, create a new WebApplication with a Blank Site Collection

stsadm -o restore -url http://newportal -filename C:\oldportal.dat -overwrite

Custom Features and Solutions won't get transfered, but the items you mentioned (workflows, people, groups) will all be transfered.

F.Aquino
(This is only supported since Service Pack 2)
ArjanP
I thought workflows won't get transferred, as stated in http://technet.microsoft.com/en-us/library/cc706866.aspx"You cannot restore workflow, alerts, features, solutions, or Recycle-Bin state by using the import operation."
Modery
the Backup / Restore features are different from Import / Export
F.Aquino