Automated document workflows — insurance claims processing, medical record archiving, engineering drawing sets — generate thousands of single-page TIFF files daily. Merging them manually through a GUI is not an option when files arrive around the clock on a server. Tiff Combine X is a command-line tool that combines any number of TIFF images into multi-page TIFF or PDF files silently, without a user interface.
The basic command follows this pattern:
TiffCombineX.exe /S "C:\Scans\*.tif" /T "C:\Output\merged.tif" /COMPRESS LZW
Parameters:
/S — source path with wildcard (e.g., C:\Inbox\*.tif)/T — target file path and name/COMPRESS — compression type: LZW, JPEG, ZIP, CCITTG3, CCITTG4/COLOR — color space: RGB, GRAY, BW/ROTATE — rotate pages: 90, 180, 270Merge to PDF instead of TIFF:
TiffCombineX.exe /S "C:\Invoices\*.tif" /T "C:\Archive\invoices.pdf"
The output format is determined by the target file extension.
Wrap the command in a .bat file and schedule it with Windows Task Scheduler for fully unattended processing:
@echo off TiffCombineX.exe /S "D:\DailyScans\*.tif" /T "D:\Archive\%date:~-4%%date:~4,2%%date:~7,2%.tif" /COMPRESS LZW echo Merge complete >> D:\Logs\combine.log
This script combines all TIFFs from the daily scans folder into a single file named with the current date. Run it nightly via Task Scheduler — no user interaction required.
TiffCombineX registers as a COM/ActiveX object on the system. Call it from any language that supports COM:
This lets you add TIFF merging to an existing document management system, a web portal, or a custom scanning workflow without building the merging logic from scratch.
| Feature | TiffCombineX (CMD) | TIFF Combine (GUI) |
|---|---|---|
| User interface | Command line only | Visual window |
| Silent server operation | Yes | No |
| ActiveX / COM object | Yes | No |
| Scheduled automation | Yes (.bat + Task Scheduler) | Manual launch |
| Multi-user server license | One license covers all users | Per-user license |
| Batch folder processing | Yes | Yes |
| Compression options | LZW, JPEG, ZIP, CCITT | LZW, JPEG, ZIP, CCITT |
| Output formats | Multi-page TIFF, PDF | Multi-page TIFF, PDF |
| Price | $89.90 | $49.90 |
For the desktop GUI version, see TIFF Combine. For more TIFF tools — splitting, converting, watermarking — check the CoolUtils TIFF Bundle.
"We process about 3,000 scanned TIFF pages daily from our branch offices. TiffCombineX runs as a scheduled task every 30 minutes and merges everything into per-client files. Zero manual work, zero GUI popups on the server. Exactly what we needed."
Marcus Lindgren IT Infrastructure Manager
"Integrated the ActiveX component into our ASP.NET document portal in half a day. Users upload scanned pages through the web interface, and TiffCombineX merges them server-side before archiving. Solid COM interface, no surprises."
Sandra Oliveira Lead Developer, DocFlow Solutions
"Running on a Citrix terminal server with 40+ concurrent users. The silent mode is key here - no windows popping up during sessions. Compression options are good, LZW keeps file sizes reasonable without quality loss. Would like to see Linux support in the future."
James Whitfield Systems Administrator
Download free trial and convert your files in minutes.
No credit card or email required.