"MSExchange2003Student" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
>> 1. Why root directory of C drive? Is this limitations of the program.
>> or you just using such configuration? If you can you should change the
>> location of this files.
> This is not really an issue. Files could be anywhere but we hvae it there
That is an awful practice -- the application should have its own
subdirectory.
> 2. You can assign scripts for user logoff via group policy - there you
> can copy your important files (even with copy command).
> Can you help me to do this or how to use the copy command?
xcopy /c /y /v SoucePath \\Server\Share\DestDirectory
You need the /y for overwriting the old copy, /v to verify if the files
are important (maybe not since no one will see the problem), and /c
to continue on error in case you want SOME of the files if others
fail.
You might need /S for include subdirectories but this would be
terrible if using the root directory as a source.
It might look like this:
xcopy /c /y C:\ApplicationDir \\Server\Share\DestDirectory
--
Herb Martin, MCSE, MVP
http://www.LearnQuick.Com
(phone on web site)