Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
If you need to setup a new Work Folders server with the same sync share configuration as an old server (with the intention of replace the old server), here are a couple of cmdlet will help in the process.
1. Export the configuration from the old server, by running the following cmdlet on the old server:
*Get-SyncShare | Export-Clixml -path c:\temp\config.xml
where the -path specify the location for storing the Config file, it can be a network share.*
*
*2. Import the configuration on the new server, by running the following cmdlet on the new server:
*Import-CliXML –Path c:\temp\config.xml | New-SyncShare
where the -path points to the Config file which was exported from the old server.
*