Convert Doc to PDF, HTML, XLS, Image and Text on web-servers.
Windows
2000/2003/Vista
7/8/10/11
and
2012/2016 / 2019/2022 Server
and
Docker / Citrix / Wine
When you need to provide multiple users with the ability to convert MS Word Docs into text, images, or table format, the Total DOC Converter X is exactly what you need. Because Doc Converter X is installed on a web server, it's possible for lots of users to run lots of conversion jobs all at once. Whether you choose to make it accessible to your entire network, or use it as a stand-alone application, the Total DOC Converter is the #1 solution for all your document conversions. For a one-off browser job, our online DOC to XLS tool handles single files instantly.
Supporting a wide range of formats, Total DOC Converter X covers all your DOC export needs. Convert Word/DOC/DOCX/DOCM/TXT to PDF, XLS, HTML, JPEG, TIFF, RTF, TXT and Unicode TXT formats. Free of GUI or interrupting messages, the Total DOC Converter X lets you send instructions via direct access to the command line. This feature is perfect for server admins, or anyone looking to run quiet behind the scenes operations. You'll even have the option to create complex sets of instructions and let our converter process the job automatically.
If you'd like, give the program a try through our free trial version. You'll have 30 days to experience first hand how helpful our converter can be. When you decide to upgrade, you'll receive a lifetime license, access to our tech support team, and all updates are free during the first year.
(includes 30 day FREE trial)
(only $750.00)
string src="C:\\test\\Source.Doc";
string dest="C:\\test\\Dest.PDF";
DocConverterX Cnv = new DocConverterX();
Cnv.Convert(src, dest, "-c PDF -log c:\\test\\Doc.log");
MessageBox.Show("Convert complete!");
Download .NET Doc Covnerter example
dim C
Set C=CreateObject("DocConverter.DocConverterX")
C.Convert "c:\source.DOC", "c:\dest.TIF", "-cTIF -log c:\doc.log"
Response.Write C.ErrorMessage
set C = nothing
dim C
Set C=CreateObject("DocConverter.DocConverterX")
Response.Clear
Response.AddHeader "Content-Type", "binary/octet-stream"
Rresponse.AddHeader "Content-Disposition", "attachment; filename=test.pdf"
Response.BinaryWrite c.ConvertToStream("C:\www\ASP\Source.doc", "C:\www\ASP", "-cpdf -log c:\html.log")
set C = nothing
Some more samples in C# specifically for ASP.net. If you need examples on other languages please contact us. We will create any example specially for you.
$src="C:\test.doc";
$dest="C:\test.htm";
if (file_exists($dest)) unlink($dest);
$c= new COM("DocConverter.DocConverterX");
$c->convert($src,$dest, "-c htm -log c:\doc.log");
if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;
require 'win32ole'
c = WIN32OLE.new('DocConverter.DocConverterX')
src="C:\\test\\test.docx";
dest="C:\\test\\test.pdf";
c.convert(src,dest, "-c PDF -log c:\\test\\Doc.log");
if not File.exist?(dest)
puts c.ErrorMessage
end
import win32com.client
import os.path
c = win32com.client.Dispatch("DocConverter.DocConverterX")
src="C:\\test\\test.docx";
dest="C:\\test\\test.pdf";
c.convert(src, dest, "-c PDF -log c:\\test\\Doc.log");
if not os.path.exists(file_path):
print(c.ErrorMessage)
uses Dialogs, Vcl.OleAuto;
var
c: OleVariant;
begin
c:=CreateOleObject('DocConverter.DocConverterX');
C.Convert('c:\test\source.docx', 'c:\test\dest.pdf', '-cPDF -log c:\test\Doc.log');
IF c.ErrorMessage<>'' Then
ShowMessage(c.ErrorMessage);
end;
var c = new ActiveXObject("DocConverter.DocConverterX");
c.Convert("C:\\test\\source.docx", "C:\\test\\dest.pdf", "-c PDF");
if (c.ErrorMessage!="")
alert(c.ErrorMessage)
use Win32::OLE; my $src="C:\\test\\test.docx"; my $dest="C:\\test\\test.pdf"; my $c = CreateObject Win32::OLE 'DocConverter.DocConverterX'; $c->convert($src,$dest, "-c pdf -log c:\\test\\Doc.log"); print $c->ErrorMessage if -e $dest;
"Up to now, Total Doc ConverterX is doing the job correctly, that is converting Doc files to PDF files using command line within a Windows scheduled task, if I would have any problem I will certainly contact you. Thank you for the product."
Brandon Belma
NSG Consulting
"We've been using the TotalDocConverter for a few years and just purchased the upgrade to X. It has been working very well for us and we are very satisfied with the product. We use it to convert our documents to PDF format. I will need to look through the documentation to see if there is anything else we could utilize it for."
Todd Braley | IT Manager
DRI Title And Escrow
Total Doc ConverterX ships with DocConverterX.exe, a console binary you can drive from scripts, scheduled tasks, CI runners, or any backend service. The flag set matches the GUI DocConverter.exe; for the full reference see the command-line documentation. The recipes below cover the cases we hear about most often from SDK customers.
The smallest possible call — one source file, one output, one target format.
DocConverterX.exe "C:\contracts\NDA.doc" "C:\out\NDA.pdf" -cPDF
Process every DOC in a folder and drop the PDFs into a sibling output directory.
DocConverterX.exe "C:\contracts\*.doc" "C:\out\" -cPDF
Swap the mask for *.rtf or *.txt to convert other source formats.
The same binary handles modern Word documents. Point the mask at *.docx and the converter picks up the new format without any extra flags.
DocConverterX.exe "C:\contracts\*.docx" "C:\out\" -cPDF
Legal and HR archives rarely live in one flat folder. -Recurse walks subdirectories; -kfs recreates the same tree on the output side instead of flattening every file into one bucket.
DocConverterX.exe "C:\contracts\2026\*.doc" "C:\out\2026\" -cPDF -Recurse -kfs
When an upstream worker writes a queue file and the converter consumes it, you don't want to encode every file path into the command line itself. -list reads file masks (one per line) from a text file.
DocConverterX.exe -list "C:\queues\contracts.txt" "C:\out\" -cPDF
Long-term document archives are usually black-and-white TIFF with G4 compression — small on disk, lossless, accepted by every imaging system. Use -tc 7 for G4FAX; switch to -tc 1 for LZW or -tc 3 for JPEG-compressed TIFF.
DocConverterX.exe "C:\contracts\*.doc" "C:\archive\" -cTIFF -tc 7
When the destination format is PDF or TIFF, paper size, orientation, and margins are flags rather than per-document settings. Useful for wide tables that don't fit portrait Letter.
DocConverterX.exe "C:\reports\*.doc" "C:\out\" -cPDF -ps A4 -po Landscape -TM 15 -LM 20 -BM 15 -RM 20
For *.txt sources the converter has to choose a font itself. Pin the typography explicitly so the output looks consistent across machines, and turn on -WordWrap so long lines don't get clipped at the right margin.
DocConverterX.exe "C:\logs\*.txt" "C:\out\" -cPDF -FontName "Consolas" -FontSize 10 -FontStyle B -WordWrap
Once DocConverterX.exe runs as a service or scheduled job, the only way to know what happened is the log. -log suppresses interactive error dialogs and writes failures to a file you can tail or scrape.
DocConverterX.exe "C:\contracts\*.doc" "C:\out\" -cPDF -log "C:\logs\docconv.log"
Combine the <DATE> macro in the destination path with -do to delete originals after a successful conversion — useful for daily intake folders that should drain to an archive.
DocConverterX.exe "C:\inbox\*.doc" "C:\archive\<DATE>\" -cPDF -do -log "C:\logs\intake.log"
Developers and IT teams that convert Word documents to PDF, images, and other formats on servers
Add DOC-to-PDF conversion to your web app via ActiveX
Web developers integrate Total Doc ConverterX into ASP, PHP, or .NET applications so users can upload Word files and receive converted PDF, HTML, or image output. The converter runs silently on the server with no GUI, handling multiple simultaneous conversion requests without interruption.
Convert Word uploads to PDF and TIFF for archival systems
Document management platforms use Total Doc ConverterX to convert incoming DOC and DOCX files to PDF for standardized storage or TIFF for image-based archives. The converter preserves document layout exactly and maintains folder structure when processing entire directory trees in batch.
Convert Word files on servers via command line
Enterprise IT teams run Total Doc ConverterX in scheduled batch jobs to convert Word documents from email systems, upload portals, and shared drives. Combine with Total Folder Monitor to auto-convert new DOC files as they arrive in watched folders — completely hands-free with no pop-ups or user interaction.
Serve document conversion to all users on your network
Organizations deploy Total Doc ConverterX on a central server so employees across departments can convert Word documents to PDF, XLS, HTML, or images through a shared service. One server installation replaces dozens of desktop converters — reducing licensing costs and IT maintenance.
Embed Word conversion into your own software products
Software vendors integrate Total Doc ConverterX via ActiveX into their applications to offer DOC-to-PDF, DOC-to-TIFF, and DOC-to-HTML conversion without building a rendering engine. The API handles Word, DOCX, RTF, and TXT files with full layout preservation and customizable output settings.
Updated Fri, 01 May 2026
(only $750.00)
|
|
|
Download free trial and convert your files in minutes.
No credit card or email required.