Batch Execution and the Send To Feature
 
 
 

If your local configuration launches 3ds Max from a "wrapper" batch file (a BAT file or an EXE file other than 3dsmax.exe itself), then you need to take some extra configuration steps for the Send To feature to work correctly.

Before you use Send To to return a file to 3ds Max from another Autodesk application, you need to take the following steps:

  1. Locate the *.syncfg file associated with 3ds Max.

    The specific name of the file changes depending on which version of 3ds Max you are running. The \synergy subfolder might contain *.syncfg files that pertain to other applications.

    The location of *.syncfg depends on which operating system you are using:

    • Vista and Windows 7:

      The file is saved in C:\programdata\autodesk\synergy\.

    • Windows XP:

      The file is saved in C:\documents and settings\all users\application data\autodesk\synergy\.

    The *.syncfg file is an XML file that you can edit with a text editor.

  2. Edit the <Application> element of the *.syncfg file to add a StartWrapperPath attribute that points to the wrapper BAT or EXE file you use to launch 3ds Max.

Example of Editing the SYNCFG File

For example, the current SYNCFG file for 3ds Max 32-bit looks like this (specific string values might differ in released versions):

<?xml version="1.0" encoding="UTF-8"?>
<SynHubConfig SchemaVersion="1.0">
  <Application Name="3ds Max" StringVersion="3ds Max 2012" NumericVersion="2012"
  ExecutablePath="C:\Program Files (x86)\Autodesk\3ds Max 2012 (x86)\3dsmax.exe" Architecture="x86_32" />
</SynHubConfig>

After you edit the <Application> element, it might look like this (changed code is highlighted):

<?xml version="1.0" encoding="UTF-8"?>
<SynHubConfig SchemaVersion="1.0">
  <Application Name="3ds Max" StringVersion="3ds Max 2012" NumericVersion="2012"
  ExecutablePath="C:\Program Files (x86)\Autodesk\3ds Max 2012 (x86)\3dsmax.exe" Architecture="x86_32"
   StartWrapperPath=”C:\My_Company_s_Utilities\StartMaxInSomeCustomWay.exe”
/>
</SynHubConfig>