Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
create a batch file with
xcopy D:\\FOLDER1\\*.* \\\\192.168.0.5\\d$\\Folder2\\*.* /s /d /f /y
and create a schedule task
you can use xcopy /e and this will copy full folders even the empty one.
as for automation, you should use Task scheduler from windows
hope this info was enough :-D
Robocopy command can be used for copying purpose. Add it to Batch File and then you can create a daily job in Tasks.
Use xcopy and run it on scheduler.
use this command to copy the NTFS permissions on the folder
robocopy \\\\Source \\\\Destination /COPYALL /E /XO /ZB /R:3 /LOG+:EDrive.txt /TEE /PURGE
You can use PowerShell Command: Copy-Item :
For Example:
Copy-Item c:\\scripts\\test.txt c:\\test
then use Windows Scheduled Tasks
Highlight/Right Click Select copy on the folder that your Copying/ Ctrl+C then paste it to where you want it to copy,,
That's What I do,