Windows 10: Batch: change target directory date after xcopy
Discus and support Batch: change target directory date after xcopy in Windows 10 Backup and Restore to solve the problem; I use this command to make a weekly back up my personal files: Code: xcopy C:\all\* Z:\Allbak\* /C /D /E /I /W /Y[/quote] Works fine but how can I... Discussion in 'Windows 10 Backup and Restore' started by tcebob, Jan 17, 2018.
Thema:
Batch: change target directory date after xcopy
Loading...
-
Batch: change target directory date after xcopy - Similar Threads - Batch change target
-
Robocopy renames the target directory to the same directory once done running
in Windows 10 GamingRobocopy renames the target directory to the same directory once done running: Hi,Trying to copy all folders to another directory on same disk and partitionrobocopy c:\Users\bob\Document c\users\Bob\1-BobBackup /sthis runs when complete, the 1-BobBackup is renamed "Document" resulting in 2 "Document " folders making it confusing which is source and... -
Robocopy renames the target directory to the same directory once done running
in Windows 10 Software and AppsRobocopy renames the target directory to the same directory once done running: Hi,Trying to copy all folders to another directory on same disk and partitionrobocopy c:\Users\bob\Document c\users\Bob\1-BobBackup /sthis runs when complete, the 1-BobBackup is renamed "Document" resulting in 2 "Document " folders making it confusing which is source and... -
robocopy to NAS affecting target directory such that it is Hidden on macOS
in Windows 10 Software and Appsrobocopy to NAS affecting target directory such that it is Hidden on macOS: Have a WIndows 10 and a MacOS Monterey 12.6 system connected through an ethernet switch to a Synology DSM7 NAS box. I'm using robocopy in a .cmd script that I schedule nightly to backup windows volumes other than C: to the NAS. I can see the files are being backuped up OK... -
xcopy directory problem
in Windows 10 Network and Sharingxcopy directory problem: In Windows 10 I open cmd and entered d: mkdir "backup of disk e" cd "backup of disk e" xcopy /e/i/h/c f:/ . everything seemed to work fine. However, the directory does not show in the finder, nor in cmd using dir. If I do dir "backup of disk e" I do get a listing... -
Is it Possible to Batch Change Date & Time of File
in Windows 10 Ask InsiderIs it Possible to Batch Change Date & Time of File: [ATTACH] I have about 10,000 or so files that are either .mp4 or .jpg that all say they were created on the same day. I have all the timestamps in the filename in [year,month,day_hour,min,second.jpg/mp4] format. How can I transfer the date in the filename to metadata?... -
Batch file to current date and time
in Windows 10 CustomizationBatch file to current date and time: Dear expert. Can you help me to batch file to change system date and time to current? Best regards, https://answers.microsoft.com/en-us/windows/forum/all/batch-file-to-current-date-and-time/2c75b187-3561-4604-b9b5-218db993a6f6 -
Batch backup & change write date
in Windows 10 SupportBatch backup & change write date: I use a batch file to back up a directory, updating the same directory each week for a month. I then rename it to include the date "Allback180822" and archive it. Code: REM Backup of C:\All to Z:\Allbak xcopy C:\all\* Z:\Allbak\* /C /D /E /I /Y echo Done! cmd /k ::keep window... -
Enable Or Disable Change System Time And Date Using Batch file
in User Accounts and Family SafetyEnable Or Disable Change System Time And Date Using Batch file: hi, i want to disable the change time and date in windows ten using batch file, i am using this script to show and hide hidden file Code: @echo off REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V Hidden /T REG_DWORD /D 0 /F taskkill /f /im... -
Xcopy syntax for multiple source directories
in Windows 10 SupportXcopy syntax for multiple source directories: can someone show me a sample xcopy command to copy C:\Directory1 and C:\Directory2 to a destination directory H:\DestinationDirectory? 88324