Robocopy: Full and Incremental Backup Strategy - Gemini chat
Given below are summary points of a recent chat I had with Gemini titled, “Robocopy /MIR: Backup Safety Concerns”, on Windows robocopy command full backup with or without /MIR switch and incremental backup with /MAXAGE switch. The chat was first on 5th Aug. 2025 and then continued on 8th Aug. 2025. Gem: "By default, Robocopy does an incremental copy." "Without the /MIR switch, Robocopy will copy new and modified files from the source to the destination. It will not, however, delete files from the destination that no longer exist in the source." Gem: "The /MIR switch is a powerful tool for creating and maintaining a complete mirror of the source directory. It essentially combines two other switches: /E (copy all subdirectories, including empty ones) and /PURGE (delete destination files and directories that no longer exist in the source)." Gem: "For your use case of backing up data, not using /MIR is a safer and often more appropriate approach. It ensur...