Your network contains an Active Directory forest named contoso.com. The forest contains four domains. All
servers run Windows Server 2012 R2.
Each domain has a user named User1.
You have a file server named Server1 that is used to synchronize user folders by using the Work Folders role
service.
Server1 has a work folder named Sync1.
You need to ensure that each user has a separate folder in Sync1.
What should you do?

A.
From Windows Explorer, modify the Sharing properties of Sync1.
B.
Run the Set-SyncServerSetting cmdlet.
C.
From File and Storage Services in Server Manager, modify the properties of Sync1.
D.
Run the Set-SyncShare cmdlet.
Explanation:
http://technet.microsoft.com/en-US/library/dn296649.aspx
PS C:\\> Set-SyncShare Share01 -User “ContosoGroup”
(A) & (B) have nothing to do with the question
Test suggested (D) but I’m thinking to select answer (C).
Set-SyncShare cmdlet modifies the settings for a sync share. But the problem is that none of the available parameters are offering an option to allow multiple users with the same name to sync with in our case Share1.
The closest one is -User. But this one “only” specifies an array of security groups or users who are allowed to sync data with a sync share.
https://technet.microsoft.com/en-us/library/dn296649(v=wps.630)
If there would be (E) option New-SyncShare, parameter -UserFolderName would allow us to create users with the same name (User1) by adding @domain to their name –> that would allow us to create 4 User1 who are not recognized as one user.
https://technet.microsoft.com/itpro/powershell/windows/syncshare/new-syncshare
That leaves me with (C), but…
if we click Properties, we can only see how many devices a user has associated with his Work Folder. There is no option to rename user.
http://windowsitpro.com/windows-server-2012-r2/windows-server-2012r2-work-folders
I think we should create a sync shares for user data from the scratch, by choosing a naming convention, in our case User1@domain, as that would eliminate folder naming conflicts.
(step7,point5) https://technet.microsoft.com/en-us/library/dn528861(v=ws.11)
On the Specify the structure for user folders page, choose a naming convention for user folders within the sync share. There are two options available:
* User alias creates user folders that don’t include a domain name. If you are using a file share that is already in use with Folder Redirection or another user data solution, select this naming convention. You can optionally select the Sync only the following subfolder checkbox to sync only a specific subfolder, such as the Documents folder.
* User alias@domain creates user folders that include a domain name. If you aren’t using a file share already in use with Folder Redirection or another user data solution, select this naming convention to eliminate folder naming conflicts when multiple users of the share have identical aliases (which can happen if the users belong to different domains).
2
0
when you create syncshare you will have to choose the folder structure (either alias or user@domain), whichever will do 1 folder per user anyway.
So D could be the correct answer as the only thing you need to do after create the sync share is to add a user group who can access the workfolder.
3
1