i still dont get it. This is how it looks like now but still no signature all i get is a display of the signature file in the console

Script
 Code:
; define static data 
; ====================================================================== 
; This is the ONE piece of user defined data that must be customized. 
; ====================================================================== 
$RootPath = '\\filserver\netlogon'
; ====================================================================== 
;RootPath = '.\' ; for debugging 
 
; define the location & name of the configuration file 
$CfgFile = $RootPath + 'mailsig.ini'


In \\filserver\netlogon i have spacer.gif, default.htm and mailsig.ini

mailsig.ini
 Code:
[COMMON]
OUOffset=1
Format=default.htm
Image=spacer.gif
Restrict=
 
[Desktop Services]
Format=DTS.htm
Image=DTS.jpg
 
[Corporate]
Format=corp.htm
Image=corplogo.jpg
 
[Systems Engineering]
Format=syseng.htm
Image=imagine.jpg



default.htm
 Code:
<!--
 template for email signature - this file is used to auto-generate a signature.htm file
 - DO NOT ARBITRARILY MODIFY THIS FILE
 -->
<html>
 <head></head>
 <body>
  <!-- 
   one row by two column table with image (if any) on left, text info on right
   any &XX& replaceable field that does not have data will be removed, thus should be on separate line(s)
   -->
  <table border="0">
   <tr>
    <td>
&IMG&
     </td>
    <td>
     <font face="arial" size="3">
<b>&FULLNAME&</b>
 / &TITLE&
     <hr>
     </font><font face="arial" size="2">
&COMPANY&<br>
&DEPARTMENT&<br>
&ADDRESS&<br>
&CITY&,
&STATE&
 &POSTALCODE& <br>
&PHONENO&<br>
&FAXNO& (Fax)<br>
&CELLNO& (Cell)<br>
&WEBURL&<br>
     </font>
    </td>
   </tr>
  </table>
 </body>
</html>



Edited by graesdal (2009-07-01 12:02 PM)