NetProgrammingHelp.com
Asp.Net,C#,Ajax,Sql server,silverlight,Javascript codes exambles articles,Programming exambles

'Windows Shell' Category

Copying Folder Contents using Xcopy

Posted by James Categorized Under: Windows Shell one Commented

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) [...]

Dumping and Extracting Directories Using Windows Shell’s

Posted by James Categorized Under: Windows Shell Add 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 [...]