How to verify if every users add their signatures

Hello

I would like to know if all the users added their personal signatures (the signature as been made base on a template). Can I build a view with the user name and a field that can show me the file path of the signature?

Thanks

Subject: How to verify if every users add their signatures

Here’s some code I found searching around a while back which you may find helpful…

'Disable signature in users mail profile

Set docProfile = dbMail.GetProfileDocument(“CalendarProfile”)

strProfileEnableSignature = docProfile.EnableSignature(0)

If strProfileEnableSignature = “1” Then

docProfile.EnableSignature = “”

Call docProfile.Save(True,False)

End If

'Re-enable signature in users mail profile

If strProfileEnableSignature = “1” Then

docProfile.EnableSignature = “1”

Call docProfile.Save(True,False)

End If

Subject: How to verify if every users add their signatures

you’d need to loop through all mail files on your servers and grab the calendar profile doc and extract the info you want.

Subject: How to verify if every users add their signatures

No,

I think that you will need to scan every mail files (Calendar profile) to check what’s in it,

JYR