Help
Version:0.7.6
Source: http://github.com/tobya/DocTo/
Command Line Parameters
Each Parameter should be followed by its value  -f "c:\Docs\MyDoc.doc" -O "C:\MyDir\MyFile"
Parameters markers are case insensitive. Short and Long can be used mixed.
  -H  This message
      --help -?
  -F  Input File or Directory
      --inputfile
  -FX Input Extension to search for if directory.  Default ".doc" (will find ".docx" also)
      --inputextension
  -O  Output File or Directory to place converted Docs
      --outputfile
  -OX Output Extension if -F is Directory. Please include '.' eg. '.pdf' .
      If not provided, pulled from standard list.
      --outputextension
  -T  Format(Type) to convert file to, either integer or wdSaveFormat constant.
      Available from http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.wdsaveformat.aspx
      or http://msdn.microsoft.com/en-us/library/office/bb241279(v=office.12).aspx
      See current List Below.
      --format
  -TF Force Format.  -T value if integer is checked against current list compiled in and not passed if unavailable.
      -TF will pass through value without checking. Word will return an "EOleException  Value out of range" error if invalid.
      Use instead of -T.
      --forceformat
  -L  Log Level Integer: 1 ERRORS Only, 2 STANDARD, 5 CHATTY, 10 VERBOSE
      Default: 2=STANDARD
      --loglevel
  -C  Compatibility Mode Integer. Set to an INTEGER value from https://msdn.microsoft.com/en-us/library/office/ff192388.aspx.
      See List Below
      --compatability
  -M  Ignore all files in __MACOSX\ subdirectory if it exists.  Default True.
      --ignoremacos
  -G  Write Log to file in directory
      --writelogfile
  -GL Log File Name to Use. Default 'DocTo.Log';
      --logfilename
  -Q  Quiet Mode: Nothing will be output to console.  To see any errors you must set -G or -GL
      Equivalent to setting -L 0
      --quiet
  -R  Remove Files after successful conversion: Default false;
      --deletefiles
  -W  Webhook: Url to call on events (plain url no params). See -HW for more details.
      --webhook
  -HW Webhook Help.
  -X  Halt on COM Error: Default True;  If you have trouble with some files not converting, set this to false to ignore
      errors and continue with batch job.
      --halterror
  -V  Show Versions.  DocTo and Word/Excel


ERROR CODES:
200 : Invalid File Format specified
201 : Insufficient Inputs.  Minimum of Input File, Output File & Type
202 : Incorrect switches.  Switch requires value
203 : Unknown switch in command
220 : Word or COM Error
221 : Word not Installed

COMPATIBILITY MODES:
FROM https://msdn.microsoft.com/en-us/library/office/ff836084.aspx

wdCurrent   : 65535 Compatibility mode equivalent to the latest version of Microsoft Word.
wdWord2003  : 11    Word 2010 is put into a mode that is most compatible with Word 2003.
                    Features new to Word 2010 are disabled in this mode.
wdWord2007  : 12    Word 2010 is put into a mode that is most compatible with Office Word 2007.
                    Features new to Word 2010 are disabled in this mode.
wdWord2010  : 14    Word 2013 is put into a mode that is most compatible with . Features new to
                    Word 2013 are disabled in this mode.
wdWord2013  : 15    Default. All Word 2013 features are enabled.