Thanks, I tried to put this in the other kix script that runs but it seems to not be working for a couple of users, I dont have any issues with it on my PC... the kix script that gets called look like this:

 Code:
 

;***************************************************************************
;****Add Email Signature using Kix Login
;****
;***************************************************************************

$objSysInfo     = CreateObject("ADSystemInfo")
$strUser 	= $objSysInfo.UserName
$objUser	= GetObject("LDAP://" + $strUser)
 
$strName 	= $objUser.FullName
$strSN 		= $objUser.sn
$strmobile 	= $objUser.mobile
$strTitle 	= $objUser.Title
$strDepartment 	= $objUser.Department
$strCompany 	= $objUser.Company
$strPhone 	= $objUser.telephoneNumber
$strGivenName 	= $objUser.givenname
$strMail 	= $objUser.mail
$strFax		= $objuser.facsimileTelephoneNumber
$strWeb		= $objUser.wWWHomePage

;Check to see if the Word temp file exists.
If Exist($appdata + "\Microsoft\Templates\~$Normal.dot")
	;Delete Word temp file.
	Del $appdata + "\Microsoft\Templates\~$Normal.dot"
EndIf

$objWord 	= CreateObject("Word.Application")
 
$objDoc 	= $objWord.Documents.Add()
$objSelection = $objWord.Selection
 
$objEmailOptions = $objWord.EmailOptions
$objSignatureObject = $objEmailOptions.EmailSignature
$objSignatureEntries = $objSignatureObject.EmailSignatureEntries

$objSelection.Font.Name = "Arial" 
$objSelection.Font.Size = "12"
$objSelection.Font.Color = "8421504"
$objSelection.Font.Bold = "1"
$objSelection.TypeText($strGivenName + " " + $strSN)

$objSelection.Font.Size = "12"
$objSelection.Font.Color = "8421504"
$objSelection.Font.Bold = "0"
$objSelection.TypeText(Chr(11))
$objSelection.TypeText($strTitle)

$objSelection.TypeText(Chr(11))
$objSelection.TypeText(Chr(11))

$objSelection.Font.Size = "14"
$objSelection.Font.Color = "8421504"
$objSelection.Font.Bold = "0"
$objSelection.TypeText(Benoy)
$objSelection.TypeText(Chr(11))

$objSelection.Font.Size = "7.5"
$objSelection.Font.Color = "8421504"
$objSelection.Font.Bold = "0"
$objSelection.TypeText("Design  Architecture  Masterplanning  Interiors  Graphics")
$objSelection.TypeText(Chr(11))

$objSelection.TypeText(Chr(11))

$objSelection.Font.Size = "8"
$objSelection.Font.Color = "8421504"
$objSelection.Font.Bold = "0"
$objSelection.TypeText("Winner - Queen's Award for Enterprise: International Trade 2008")
$objSelection.TypeText(Chr(11))
$objSelection.TypeText(Chr(11))


$objSelection.TypeText("T: " + $strPhone)
$objSelection.TypeText(Chr(11))


$objSelection.TypeText("F: " + $strfax)
$objSelection.TypeText(Chr(11))
$objSelection.TypeText(Chr(11))


$objSelection.TypeText($strWeb)
$objSelection.TypeText(Chr(11))
$objSelection.TypeText(Chr(11))

;add the image to the signature
$objShape = $objSelection.InlineShapes.AddPicture("\\servername\NETLOGON\Signature_image\Default\signature_image.gif")
$objLink = $objDoc.Hyperlinks.Add($objShape, "mailto:first.last@@emailaddress.com")


$objSelection.TypeText(Chr(11))

;adds the tree webding to the signature
$objSelection.Font.Name = "Webdings"
$objSelection.Font.Size = "18"
$objSelection.Font.Color = "13421619"
$objSelection.Font.Bold = "1"
$objSelection.Font.Italic = "1"
$objSelection.TypeText("P")


$objSelection.Font.Name = "Arial"
$objSelection.Font.Size = "8"
$objSelection.Font.Color = "13421619"
$objSelection.Font.Bold = "0"
$objSelection.Font.Italic = "0"
$objSelection.TypeText("   Please consider the environment - only print this e-mail if absolutely necessary")

$objSelection = $objDoc.Range()
 
;this specifies what the signature is the be called and whether you want it to apply to forward and reply etc
$objSignature=$objSignatureEntries.Add("company_image", $objSelection)
$objSignatureObject.NewMessageSignature = "company_image"
$objSignatureObject.ReplyMessageSignature = "company_image"
 
$objDoc.Saved = 1
$objWord.Quit



Is this correct? I dont need to add this to kix script I use as I dont get the save as problem, it runs fine without it?!? It hasnt made any difference to the guys that are having the issue, or do I need to amend the script slightly?