Using Robocopy
Example of copying files from a drive on my local PC to the cloud share:
robocopy E:\Proxmox-Backups \\WIN-SRV-22\localcloud\Proxmox-Backups-Nate /ETA /E /V /TEE
Explanation of Options
- /ETA: Shows the estimated time of arrival for the transfer to complete.
- /E: Copies all subdirectories, including empty ones.
- /V: Produces verbose output.
- /TEE: Writes the status output to the console window as well as to the log file (if specified)
Final Output: