Computer Productivity Hacks

From TeleCafeWiki
Revision as of 16:30, 31 January 2014 by Dave (talk | contribs) (Windows Command Line)
Jump to navigation Jump to search

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.