Hi,
I found a script that generates a signature when a user log in.
It works perfectly but i'm just searching 1 more thing.
If a user has more mailboxes then the signatures is only connected to the first one.
This is de code where the signature is connected:
Set objWord = CreateObject("Word.Application")
Set objSignatureObjects = objWord.EmailOptions.EmailSignature
objSignatureObjects.NewMessageSignature = sUserName
objSignatureObjects.ReplyMessageSignature = sUserName
objWord.Quit
So my question is how i connect the signature to more mailboxes?