Difference between revisions of "Computer Productivity Hacks"

From TeleCafeWiki
Jump to navigation Jump to search
(→‎Text Search: SILVERCODERS DocToText)
(Detexter is an app designed to extract text from PDF files. + Manage Network Tasks From the Windows Command Prompt)
Line 1: Line 1:
 +
{{RightTOC}}
 
== Command Line ==
 
== Command Line ==
 +
* [http://www.enterprisenetworkingplanet.com/windows/article.php/3911386/Manage-Network-Tasks-From-the-Windows-Command-Prompt.htm Manage Network Tasks From the Windows Command Prompt]
 +
: Mounting shared drives and connecting to remote resources is something you can easily do from the Windows GUI. With our quick guide to the command prompt, however, you can more easily automate large tasks.
 +
 
* [http://learncodethehardway.org/cli/book/cli-crash-course.html Command Line Crash Course]
 
* [http://learncodethehardway.org/cli/book/cli-crash-course.html Command Line Crash Course]
 
: Quick super fast course in using the command line. It is intended to be done rapidly in about a day or two, and not meant to teach you advanced shell usage.
 
: Quick super fast course in using the command line. It is intended to be done rapidly in about a day or two, and not meant to teach you advanced shell usage.
Line 46: Line 50:
 
* [https://sourceforge.net/projects/doctotext/ SILVERCODERS DocToText]  
 
* [https://sourceforge.net/projects/doctotext/ SILVERCODERS DocToText]  
 
: Extracts plain text from documents in all popular formats.
 
: Extracts plain text from documents in all popular formats.
* [http://pdfsearch.sourceforge.net/ PdfSearch]
+
 
: Search and index text in an archive of pdf files.
+
* [https://sourceforge.net/projects/detexter/ Detexter]
 +
: Detexter is an app designed to extract text from PDF files.
  
 
== See Also ==
 
== See Also ==
 
* [[Spreadsheet Tricks]]
 
* [[Spreadsheet Tricks]]
 
* [[User:Dave/Web Hack Notes (Non-Wiki)]]
 
* [[User:Dave/Web Hack Notes (Non-Wiki)]]

Revision as of 19:05, 9 February 2014

Command Line

Mounting shared drives and connecting to remote resources is something you can easily do from the Windows GUI. With our quick guide to the command prompt, however, you can more easily automate large tasks.
Quick super fast course in using the command line. It is intended to be done rapidly in about a day or two, and not meant to teach you advanced shell usage.

Windows Command Line

Cmdlets are the heart-and-soul of Windows PowerShell, Microsoft's latest command shell/scripting language.
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.

Generate File List

Example: C:\Users\me\Downloads\MyFolder> dir /b > filelist.txt
(The text in orange shows the command used once you've navigated into the directory from which you want to generate the list of file names.)
This tutorial contains several working answers for using Windows PowerShell to list files and folders.
Works with cmd.exe, but doesn't seem to work with Windows PowerShell.

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.

Text Extraction

Capture2Text enables users to do the following:
  1. Optical Character Recognition (OCR)
  2. Speech Recognition
Lists several options.

Text Search

Extracts plain text from documents in all popular formats.
Detexter is an app designed to extract text from PDF files.

See Also