Link to home
Start Free TrialLog in
Avatar of N00b2015
N00b2015

asked on

Documents back-up to network drive

What would be the best and discreet way of having certain folders on a hardrive backed up to a network (user) file server?

Currently we have a few users who are saving all their documents to either the documents folder or desktop on their C: and not to their network drive where they should be.

I have a robocopy script which could work however, I don't want it to interfere with the users work. Robocopy usually pops up in a little black box which I'm wanting to avoid. So if possible have something run in the background and without them noticing.

An example of the robocopy script i was looking at (if required)

robocopy c:\users\USER\Desktop \\FileServer\users\USERSFOLDER\Desktop /MIR /COPY:DAT /DCOPY:T

Robocopy is just something i was thinking of but open to any other solutions and free methods that is simple to manage and effective

Is this possible?

Thanks!!!
Avatar of NVIT
NVIT
Flag of United States of America image

I haven't confirmed if this works but... To prevent Robocopy window from showing, try running it (is it a scheduled task?) from a remote station OR as a different user than the current logged on user.
Rather than doing a "workaround" like this you should enforce your users to properly save their data, or use roaming profiles. Maybe you just need to educate them.
ASKER CERTIFIED SOLUTION
Avatar of Andy M
Andy M
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of N00b2015
N00b2015

ASKER

Thank you for all your responses. Rindi -  don't worry. Force will be applied but for the interim I need a solution for a handful of users, not all.
Great Andy! Exactly what I was looking for. Thank you
No worries, happy to help.