<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#336666">
    <div class="moz-cite-prefix"><font face="Verdana">Here's one option
        for a temporary solution to this problem until Adobe provides a
        real fix. Just create the following batch file and put it in the
        FM folder and set up a shortcut to this batch file. It grabs the
        current date, changes the date to 2012, runs FM, then resets the
        date. You do have to "Press any key" at the PAUSE prompt so that
        FM has a chance to start up. There are ways to make this more
        elegant, but this seems to provide a reasonable workaround. If
        you're on Win7 or Vista, you'll likely need to run this "As
        Administrator".<br>
        <br>
        IMPORTANT: Use this "fix" at your own risk. I offer no warranty
        of fitness whatsoever!  <br>
        <br>
        -----------------<br>
        @echo off<br>
        rem ** get current date **<br>
        for /f "tokens=2-4 delims=/ " %%a in ('date /T') do set year=%%c<br>
        for /f "tokens=2-4 delims=/ " %%a in ('date /T') do set
        month=%%a<br>
        for /f "tokens=2-4 delims=/ " %%a in ('date /T') do set day=%%b<br>
        rem ** set bogus date **<br>
        date 01-12-2012<br>
        rem ** run framemaker **<br>
        start framemaker.exe<br>
        rem ** wait till FM starts **<br>
        pause<br>
        rem ** reset current date **<br>
        date %day%-%month%-%year%<br>
        ------------------<br>
        <br>
        Cheers,<br>
        <br>
        ...scott<br>
        <br>
        <br>
        <br>
        <br>
      </font>
      <pre class="moz-signature" cols="72">
</pre>
      <br>
    </div>
    <blockquote cite="mid:50E33720.4050305@leximation.com" type="cite">
    </blockquote>
    <br>
  </body>
</html>