Symbolic link two users document and desktop folders

1

I wonder if is any way to mirror Documents and Desktop folder between two users on Windows, I would that two users have everything the same on desktop and documents folders. I'm trying to do: mklink /J C:\Users\UserA\Documents C:\Users\UserB\Documents but I have a error: cannot create a file when that file already exists.

zuku

Posted 2019-08-09T19:56:36.340

Reputation: 11

Answers

1

You should be able to accomplish this with Folder Redirection. The exact procedure varies a little depending on the Windows version.

In Windows 10 Enterprise (I think it works in all editions):

Create a new directory outside of C:\Users for Documents, and for Desktop (not sure if that's necessary, but it probably avoids some permissions problems).

Open Explorer to "This PC". Find the links to Desktop and to Documents towards the top (Note: DO NOT try to go to the actual directory to do this; it won't work).

Right-click on the Documents icon, and go to Properties.

You should see a "Location" tab that allows you to redirect the folder to the new directories. There are various options here, including whether to move the user's files or leave them in place.

Do the same for the Desktop icon, and repeat for the second user.

Kevin Keane

Posted 2019-08-09T19:56:36.340

Reputation: 419