A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Tags: , ,

Set Default Signature





 
 
Thread Tools Display Modes
  #1  
Old December 1st 06, 12:02 PM posted to microsoft.public.outlook.program_vba
Ben
external usenet poster
 
Posts: 5
Default Set Default Signature

Hi,

I'm currently using a VB Script, as a logon script, to create a custom
signature, pulling info from AD, for our users.

I would not like to set the signature as the default to be used in outlook,
however I can't find a way to do it. I've set my signature then searched
through the registry, but there doesn't seen to be any entry containing the
name, I've also looked in the Outlk11.adm template, and can't see anywhere,
the only signature control in the policy seems to be disable signature for
new, forward & reply.

Can anyone suggest a way to set my signature to default?

Many thanks

Ben


Ads
  #2  
Old December 1st 06, 12:18 PM posted to microsoft.public.outlook.program_vba
Ben
external usenet poster
 
Posts: 5
Default Set Default Signature

Ah, no worries, solved it myself, changed the outlook adm template so the
checkbox for enable/disable signature was actually an EDITTEXT, and changed
the name from "Disable signature" to "Default signature", now I can enter
the name of the signature to use!
I think it's easier to do it this way than via a vbscript!
Ben


"Ben" wrote in message
...
Hi,

I'm currently using a VB Script, as a logon script, to create a custom
signature, pulling info from AD, for our users.

I would not like to set the signature as the default to be used in
outlook, however I can't find a way to do it. I've set my signature then
searched through the registry, but there doesn't seen to be any entry
containing the name, I've also looked in the Outlk11.adm template, and
can't see anywhere, the only signature control in the policy seems to be
disable signature for new, forward & reply.

Can anyone suggest a way to set my signature to default?

Many thanks

Ben



  #3  
Old December 1st 06, 05:52 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Set Default Signature

That's the method I recommend, except that I suggest doing it in a separate .adm file. If you do it your way, you'll need to remember the modification so you can do it again when the next service pack comes out with a new outlk11.adm file.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Ben" wrote in message ...
Ah, no worries, solved it myself, changed the outlook adm template so the
checkbox for enable/disable signature was actually an EDITTEXT, and changed
the name from "Disable signature" to "Default signature", now I can enter
the name of the signature to use!
I think it's easier to do it this way than via a vbscript!
Ben


"Ben" wrote in message
...
Hi,

I'm currently using a VB Script, as a logon script, to create a custom
signature, pulling info from AD, for our users.

I would not like to set the signature as the default to be used in
outlook, however I can't find a way to do it. I've set my signature then
searched through the registry, but there doesn't seen to be any entry
containing the name, I've also looked in the Outlk11.adm template, and
can't see anywhere, the only signature control in the policy seems to be
disable signature for new, forward & reply.

Can anyone suggest a way to set my signature to default?

Many thanks

Ben



  #4  
Old March 1st 07, 11:25 AM posted to microsoft.public.outlook.program_vba
paul
external usenet poster
 
Posts: 142
Default Set Default Signature

Is this an old adm setting? I am able to locate this in OUTLK11.adm contained
in the ORKSP2AT.EXE.

Are you able to post the registry key location that the Default Signature
setting resides.

Thanks

"Sue Mosher [MVP-Outlook]" wrote:

That's the method I recommend, except that I suggest doing it in a separate .adm file. If you do it your way, you'll need to remember the modification so you can do it again when the next service pack comes out with a new outlk11.adm file.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Ben" wrote in message ...
Ah, no worries, solved it myself, changed the outlook adm template so the
checkbox for enable/disable signature was actually an EDITTEXT, and changed
the name from "Disable signature" to "Default signature", now I can enter
the name of the signature to use!
I think it's easier to do it this way than via a vbscript!
Ben


"Ben" wrote in message
...
Hi,

I'm currently using a VB Script, as a logon script, to create a custom
signature, pulling info from AD, for our users.

I would not like to set the signature as the default to be used in
outlook, however I can't find a way to do it. I've set my signature then
searched through the registry, but there doesn't seen to be any entry
containing the name, I've also looked in the Outlk11.adm template, and
can't see anywhere, the only signature control in the policy seems to be
disable signature for new, forward & reply.

Can anyone suggest a way to set my signature to default?

Many thanks

Ben




  #5  
Old March 1st 07, 01:22 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Set Default Signature

The RTM and SP1 .adm files had a setting that used the same registry values to block signatures completely. That's different from what you want to do. The relevant registry values are the NewSignature and ReplySignature string values in the HKEY_CURRENT_USER\Software\Policies\Microsoft\Offi ce\11.0\Common\MailSettings key or HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\C ommon\MailSettings, if you want to apply the setting as a user preference.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Paul" wrote in message ...
Is this an old adm setting? I am able to locate this in OUTLK11.adm contained
in the ORKSP2AT.EXE.

Are you able to post the registry key location that the Default Signature
setting resides.

Thanks

"Sue Mosher [MVP-Outlook]" wrote:

That's the method I recommend, except that I suggest doing it in a separate .adm file. If you do it your way, you'll need to remember the modification so you can do it again when the next service pack comes out with a new outlk11.adm file.



"Ben" wrote in message ...
Ah, no worries, solved it myself, changed the outlook adm template so the
checkbox for enable/disable signature was actually an EDITTEXT, and changed
the name from "Disable signature" to "Default signature", now I can enter
the name of the signature to use!
I think it's easier to do it this way than via a vbscript!
Ben


"Ben" wrote in message
...
Hi,

I'm currently using a VB Script, as a logon script, to create a custom
signature, pulling info from AD, for our users.

I would not like to set the signature as the default to be used in
outlook, however I can't find a way to do it. I've set my signature then
searched through the registry, but there doesn't seen to be any entry
containing the name, I've also looked in the Outlk11.adm template, and
can't see anywhere, the only signature control in the policy seems to be
disable signature for new, forward & reply.

Can anyone suggest a way to set my signature to default?

Many thanks

Ben




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Detect default signature paul Outlook and VBA 1 September 15th 06 06:37 AM
: I want to automate the Tools | Options | Mail Format to set the default signature from VBA Thor Østergaard Outlook and VBA 2 May 23rd 06 09:54 PM
Not able to add default Signature antonio Outlook and VBA 5 May 12th 06 07:32 AM
setting signature as default drmeh Outlook and VBA 0 March 6th 06 01:59 AM
How do I set a unique signature for each profile? Lou S. Outlook - Installation 1 February 21st 06 10:33 PM


All times are GMT +1. The time now is 05:17 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2008 Outlook Banter, part of the NewsgroupBanter project.
The comments are property of their posters.
Ringtones - Loan - Mortgages - Child Trust Funds - Credit Cards