Difference between revisions of "Computer Productivity Hacks"
Jump to navigation
Jump to search
(→Folder & File Compression: Replace defective tutorial with another that (one hopes) will work.) |
(Windows Command Line) |
||
Line 1: | Line 1: | ||
+ | == Windows Command Line == | ||
+ | * [http://www.computerhope.com/robocopy.htm Microsoft DOS robocopy command] | ||
+ | : Robocopy: A robust file copy command for the Windows command line. | ||
+ | |||
+ | * [http://ss64.com/nt/ An A-Z Index of the Windows CMD command line] | ||
+ | : Each command is linked to more info about the particular command. | ||
+ | |||
+ | * [http://pcsupport.about.com/od/commandlinereference/p/xcopy-command.htm Xcopy] | ||
+ | : The xcopy command is a Command Prompt command used to copy one or more files and/or folders from one location to another location. | ||
+ | |||
== Folder & File Compression == | == Folder & File Compression == | ||
* [http://www.wikihow.com/Use-7Zip-to-Create-Multiple-Compressed-Folders-in-One-Go How to Use 7Zip to Create Multiple Compressed Folders in One Go] | * [http://www.wikihow.com/Use-7Zip-to-Create-Multiple-Compressed-Folders-in-One-Go How to Use 7Zip to Create Multiple Compressed Folders in One Go] |
Revision as of 15:30, 31 January 2014
Windows Command Line
- Robocopy: A robust file copy command for the Windows command line.
- Each command is linked to more info about the particular command.
- The xcopy command is a Command Prompt command used to copy one or more files and/or folders from one location to another location.
Folder & File Compression
- Example:
for /d %%X in (*) do "c:\Program Files\7-Zip\7z.exe" a "%%X.zip" "%%X\"
- To compress a folder without using any particular compression software.