• Contact
  • Company
  • Login / My Account
  • Shopping Cart (0)
Document Conversion Made Easy!
Peernet Menu
  • Products
      • Virtual Printers
        • tiff-image-printer-iconTIFF Image Printer – Create TIFF Images
        • raster-image-printer-iconRaster Image Printer – Create TIFF, PDF, JPEG, etc.
        • pdf-image-printer-iconPDF Image Printer – Create Searchable PDF
      • PDF Editor
        • pdf-creator-plus-iconPDF Creator Plus – Merge, Edit, Create Searchable PDF
      • Batch Converters
        • document-conversion-service-iconDocument Conversion Service – Unattended 24/7 Batch Converter
        • file-conversion-center-iconFile Conversion Center – Desktop Batch Converter
      • Reporting Software
        • peernet-reports-iconPEERNET Reports – Barcode, Report and Label Software
      • enterprise-licensingEnterprise Licensing for your Corporation
      • discounts-multiple-licensesDiscounts for Purchasing Multiple Licenses
      • distribute-bundle-peernet-softwareDistribute PEERNET Software Bundled with your Product
  • Purchase
      • Purchase Virtual Printers
        • tiff-image-printer-iconTIFF Image Printer – Create TIFF Images
        • raster-image-printer-iconRaster Image Printer – Create TIFF, PDF, JPEG etc.
        • pdf-image-printer-iconPDF Image Printer – Create Searchable PDF
      • Purchase PDF Editor
        • pdf-creator-plus-iconPDF Creator Plus – Merge, Edit, Create Searchable PDF
      • Purchase Batch Converters
        • document-conversion-service-iconDocument Conversion Service – Unattended 24/7 Batch Converter
        • file-conversion-center-iconFile Conversion Center – Desktop Batch Converter
      • Purchase Reporting Software
        • peernet-reports-iconPEERNET Reports – Barcode, Report and Label Software
      • peernet-online-store-purchase-optionsPurchase Options
      • peernet-software-license-levelsLicense Levels
      • peernet-software-purchase-resellerFind Resellers
      • peernet-software-sales-faqsSales FAQ
  • Learn & Support
        • peernet-help-centerTutorials
          • Learn the Basics or Go Beyond with Video Tutorials, FAQs and Guides

            At PEERNET we pride ourselves on providing the best support and the fastest response times in the industry.
          • Select Software Tutorials:
              • tiff-image-printer-iconTIFF Image Printer
              • raster-image-printer-iconRaster Image Printer
              • pdf-image-printer-iconPDF Image Printer
              • pdf-creator-plus-iconPDF Creator Plus
              • document-conversion-service-iconDocument Conversion Service
              • file-conversion-center-iconFile Conversion Center
              • peernet-reports-iconPEERNET Reports
        • peernet-software-faqsSales FAQ
          • Popular Topics

            Find all the answers you need to our most frequently asked questions.
              • Download & Install
                • How do I download software I already purchased?
              • Purchasing & Renewing
                • How do I purchase PEERNET software?
                • What license level do I need?
                • How do I add licenses to an existing serial number?
                • How do I renew my annual subscription?
              • Licensing & Operating
                • How do I activate my new PEERNET software?
                • How do I activate my software without an internet connection?
                • Where do I find my serial number?
                • How do I move my software to a new computer?
                • How do I update/upgrade my software to the latest release?
            • Read all Sales FAQs
  • Blog
  • Menu Menu
Document Conversion Service box shot

Improved Client-Server Conversion with Document Conversion Service

May 26, 2014/by Robert Massart

We are pleased to announce that the latest version, Document Conversion Service 2.0.014, contains many updates and changes that simplify the configuration needed to set up client-server conversion.

Client-server conversion, also known as remote conversion, allows 1 or more client computers needing to convert files to ‘talk’ to a server computer, where the actual file conversion takes place.

A simple example of this is when you have a small application to convert files on each client computer and Document Conversion Service is running on its own, separate computer, the server.

What’s New in DCS 2.0.014?

The Document Conversion Service install now creates two user groups, a local user group named Document Conversion Service Users, and if on a domain, a domain group named Document Conversion Service Domain Users. A network share folder named DCSREMOTE, used by the clients to give the server access to the files to be converted, is also created. This makes giving clients access to be able to convert files as easy as adding the clients to the appropriate Document Conversion Service user group.

The Document Conversion Server Client Redistributable install has been simplified to install only the basic components needed by the client by default, and can now be deployed using a command line.

Best Practices for Document Conversion

We recommend the following when installing Document Conversion Service for client-server conversion:

  • You will need access to an administrative account on both the client and the server computers for adding local accounts and modifying group memberships.
  • Create the DCSAdmin account with the same password when installing Document Conversion Service on the server and when installing Document Conversion Server Client Redistributable on any clients.
  • Use the new groups Document Conversion Service Users and Document Conversion Service Domain Users to give the clients permission to connect to the server.

Common Setup Scenarios

When configuring client-server conversion you need to know if your clients are local or domain accounts and if the server is on a domain or a workgroup. You will also need to have installed the Document Conversion Service Client Redistributable on each client machine.

Server is…Client is a Domain AccountClient is a Local Account
On a Domain Add client account to the Document Conversion Service Domain Users group. Create a matching local account with the same user name and password on the server. Add both accounts to the Document Conversion Service Users group.
On a Workgroup Create a matching local account with the same user name and password on the server. Add both accounts to the Document Conversion Service Users group.

Programming for Client-Server Conversion

When calling PEERNET.ConvertUtility or the command line tools from your application to perform the file conversion on a remote computer (client-server conversion), you need to know the following:

  • The machine name of the server where Document Conversion Service is running.
  • The path to a shared folder that is accessible to both the client and the server; in most cases this will be the DCSREMOTE network share that is created on the server as part of the Document Conversion Service install.

Remote Conversion from PEERNET.ConvertUtility

When using the PEERNET.ConvertUtility conversion methods in a client-server remote conversion call you need to specify the name of the server and the path to the shared folder, usually the DCSREMOTE folder.

PNConversionItem resultItem = null;   
<span style="background-color: yellow;"><strong>String strRemoteComputer = "DOC-CONV-SRV1";</strong></span>
<span style="background-color: yellow;"><strong>String strRemoteFolder = @"\\DOC-CONV-SRV1\DCSREMOTE";</strong></span>

// Directory must exist 
String strOutputFolder = @"C:\Test\Output";
if ( !Directory.Exists(strOutputFolder) ) 
{
    Directory.CreateDirectory(strOutputFolder);
}   

// This is the single call needed to convert a file
resultItem = PNConverter.ConvertFile(@":\Test\File.pdf", 
                                     strOutputFolder, // output folder 
                                     "ConvertedFromPDF", // converted file name
                                     true, // overwrite existing
                                     false, //  do not remove file ext
                                     false, // do not create log
                                     "TIFF 200dpi OptimizedColor", // profile
                                     String.Empty,
                                     String.Empty,
                                     null,         // no custom user settings
                                     <span style="background-color: yellow;"><strong>strRemoteComputer, // DCS is running here</strong></span>
                                     <span style="background-color: yellow;"><strong>strRemoteFolder, // remote shared folder</strong></span>
                                     String.Empty // no custom log folder);

Remote Conversion from the Command Line Tools

If your application uses the the command line tools, DCSConvertFile.exe, DCSConvertFolder.exe, etc., you will need to install the full version of the Document Conversion Service Client Redistributable. The command line tools are not included as part of the minimum install.

The command line tools all take an argument “/C” that takes the name of the server and the shared folder path for conversion on a remote computer.

DCSConvertFile /P="TIFF 200dpi Monochrome" <span style="background-color: yellow;"><strong>/C="DOC-CONV-SRV1;\\DOC-CONV-SRV1\DCSREMOTE"</strong></span>
               "C:\Test\Document.doc"

Installing the Client Redistributable

The client redistributable, PNDocConvClientSetup_2.0.exe, is included as part of the Document Conversion Service install. You will find it in the \Redist folder.

The wizard-based install defaults to the minimum components. It does not include the command line tools, the Watch Folder service or the extra sample code. If you need the command line tools choose the Complete install or select Custom and choose the features you need.

If you need to bundle the client install with your application, several command line options are available to install the client silently. When using the command line the default setup type is BASIC, which installs the only the minimum components.

PNDocConvClientSetup_2.0.exe /S 
                             PASSWORD="password"
                             [SETUPTYPE=BASIC|FULL]
                             [DCSUSER="domain\user"]

The following command line runs the basic client setup silently with no UI. A local DCSAdmin account will be created with the supplied password, or if it already exists, will be validated and used with the supplied password.

PNDocConvClientSetup_2.0.exe /S PASSWORD="password"

Learn more about our Document Conversion Service for all your batch document conversion needs to TIFF, PDF, JPG, and more!

https://www.peernet.com/wp-content/uploads/DCSBox-for-blog.jpg 450 1516 Robert Massart https://www.peernet.com/wp-content/uploads/peernet-logo.png Robert Massart2014-05-26 14:11:052019-07-16 14:47:06Improved Client-Server Conversion with Document Conversion Service
  • Document Conversion Service
  • TIFF Image Printer
  • Raster Image Printer
  • PDF Image Printer
  • PDF Creator Plus
  • File Conversion Center
  • PEERNET Reports
Search Search

Recent Posts

  • PNSrv11Lib to PNSrv12Lib: Migration Made Easy
  • Migrating to Version 12: Compatibility Mode Quick Start Guide
  • Well Logs: Stitch PDF Pages into a Continuous TIFF Image
  • Dynamic Stamp Content
  • Convert to PDF: The Power of On-Premise PDF Creation

INTERESTING LINKS

Below are some interesting links for you! Enjoy your stay :)

RSS Feed Logo RSS Feed Logo Subscribeto RSS Feed

OUR PRODUCTS

  • Document Conversion Service
  • TIFF Image Printer
  • Raster Image Printer
  • PDF Image Printer
  • PDF Creator Plus
  • File Conversion Center
  • PEERNET Reports

LATEST NEWS

  • PNSrv11Lib to PNSrv12Lib: Migration Made EasyMarch 14, 2025 - 2:10 pm
  • Migrating to Version 12: Compatibility Mode Quick Start GuideMarch 14, 2025 - 2:09 pm
  • Well Logs: Stitch PDF Pages into a Continuous TIFF ImageMarch 14, 2025 - 2:08 pm
  • Dynamic Stamp ContentNovember 4, 2024 - 4:47 pm

BUSINESS INFORMATION

Toll Free: 1-800-883-7980 North America

Tel: 1-613-224-6894

Our office hours are Monday to Friday, from 0900 hrs to 1700 hrs, Eastern Standard Time.

Email Address: [email protected]
Copyright © 1997-2026. All rights reserved. Terms and Conditions | Disclaimer | Privacy Policy | Trademarks.
PEERNET® is a registered trademark of PEERNET Inc.
  • Link to Youtube
  • Link to Rss this site
  • Products
  • Purchase
  • Company
  • Contact
Link to: Converting a Folder from Scheduled Task Using Document Conversion Service Link to: Converting a Folder from Scheduled Task Using Document Conversion Service Converting a Folder from Scheduled Task Using Document Conversion ServiceDocument Conversion Service box shot Link to: Creating High Quality TIFF Images from a PDF File Link to: Creating High Quality TIFF Images from a PDF File Creating High Quality TIFF Images from a PDF File
Scroll to top Scroll to top Scroll to top