Introduction: Xcopy is a powerful copy command with excellent features,we can easily copying any win32 items using Xcopy. Main: Xcopy command syntax, XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W] [/C] [/I] [/Q] [/F] [/L] [/H] [/R] [/T] [/U] [/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/EXCLUDE:file1[+file2][+file3]…] source Specifies the file(s) [...]
Category Archives: Windows Shell
Dumping and Extracting Directories Using Windows Shell’s
Posted by on January 20, 2010
0 comments
Introduction: Sometimes we need to move a particluar dir and contents into another machine.In this article i am going to explain this task with Windows Shell Script. Main: Here i pasted two scripts,one for extracting and another for Compressing, Extracting.vbs <strong>Dim strPath, strPath1, strFileName, intLen, strText, oLinesRead Const ForAppending = 8 Const ForReading = 1 [...]