Batch file to copy file from one system to on
Solved/Closed
        Related:         
- Batch copy file
- Copy file batch - Best answers
- Copy files from one server to another windows batch script - Best answers
- Batch copy folder ✓ - Programming Forum
- Windows 10 iso file download 64-bit - Download - Windows
- Dvi file - Guide
- Messenger file downloader - Guide
- Batch file open folder ✓ - Windows Forum
6 responses
                        
                            
                    Hi,
Please try the following batch command:
            Please try the following batch command:
- set path=c:\WINDOWS\system32;
- echo Copying started at %date% %time%>>_date_.txt
- xcopy E:\backup \\SERVER\BACKUP\others /s /a /d
- echo Copying finished at %date% %time%>>_date_.txt
- echo Completed Successfully at %date% %time%>>_date_.txt
- echo --------------------------------------------------------------------------- >>_date_.txt
 
        
    
    
        
    
    
    
Apr 5, 2010 at 10:56 AM
Aug 2, 2010 at 11:07 AM
my c:\folder to c:\transfer in remote machine and I have given same command lines and it doesnot.
i have given like this xcopy c:\practicetemp \\10.65.1.71 C:\transfer /s/a/d
rest is same,,,,,,,it gives invalid num of parameters
Mar 18, 2015 at 04:00 AM