<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: AD Based Outlook Email Signature for 2003 and 2007</title>
	<atom:link href="http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/</link>
	<description>Bloggin about Microsoft, SQL Server, Windows Server 2008, Windows Mobile, new techie bits and pieces</description>
	<pubDate>Wed, 10 Mar 2010 10:35:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Brad Marsh</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-545</link>
		<dc:creator>Brad Marsh</dc:creator>
		<pubDate>Mon, 21 Sep 2009 03:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-545</guid>
		<description>You could have a seprate one for reply, resonably easily by simply re-using the script and also running it at login. But this time comment out any section that pertains to 'new signature'. 

Maybe if I find time (things are just really busy at the moment) I might be able to create the VBS to create 2 different items one for reply and one for new..</description>
		<content:encoded><![CDATA[<p>You could have a seprate one for reply, resonably easily by simply re-using the script and also running it at login. But this time comment out any section that pertains to &#8216;new signature&#8217;. </p>
<p>Maybe if I find time (things are just really busy at the moment) I might be able to create the VBS to create 2 different items one for reply and one for new..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-542</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 15 Sep 2009 14:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-542</guid>
		<description>Hi Brad,
Thx for the script, it works perfectly here!
I have one question, I would love to have a separete reply signature. I read your post from oktober 21 at 10:39pm (up here) but it does'nt work for me.

Can you explain it a little further?
Thx for the answer</description>
		<content:encoded><![CDATA[<p>Hi Brad,<br />
Thx for the script, it works perfectly here!<br />
I have one question, I would love to have a separete reply signature. I read your post from oktober 21 at 10:39pm (up here) but it does&#8217;nt work for me.</p>
<p>Can you explain it a little further?<br />
Thx for the answer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: exchangeman</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-410</link>
		<dc:creator>exchangeman</dc:creator>
		<pubDate>Tue, 14 Apr 2009 16:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-410</guid>
		<description>Slightly unrelated, but I've recently started using Exclaimer to manage our &lt;a href="http://www.exclaimer.com/products/outlook-email-signatures.aspx" title="outlook email signatures" rel="nofollow"&gt;email signatures&lt;/a&gt; - so far I have been really impressed with this tool - I highly recommend it.</description>
		<content:encoded><![CDATA[<p>Slightly unrelated, but I&#8217;ve recently started using Exclaimer to manage our <a href="http://www.exclaimer.com/products/outlook-email-signatures.aspx" onclick="javascript:pageTracker._trackPageview('/outbound/comment/http://www.exclaimer.com/products/outlook-email-signatures.aspx');" title="outlook email signatures" rel="nofollow">email signatures</a> - so far I have been really impressed with this tool - I highly recommend it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Dirks</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-361</link>
		<dc:creator>Peter Dirks</dc:creator>
		<pubDate>Fri, 23 Jan 2009 11:36:58 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-361</guid>
		<description>Thanx, for  the information

i've added
' This section checks if the signature directory exits and if not creates one.
'====================
Dim objFS1
Set objFS1 = CreateObject("Scripting.FileSystemObject")
Set objFSO = CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(HTMFilestring) Then
    Wscript.Quit
End If
If (objFS1.FolderExists(FolderLocation)) Then
Else
Call objFS1.CreateFolder(FolderLocation)
End if  

and it works
since we replace the signatures withv version numbers the old ones get deleted when updated by the script</description>
		<content:encoded><![CDATA[<p>Thanx, for  the information</p>
<p>i&#8217;ve added<br />
&#8216; This section checks if the signature directory exits and if not creates one.<br />
&#8216;====================<br />
Dim objFS1<br />
Set objFS1 = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)<br />
Set objFSO = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)<br />
If objFSO.FileExists(HTMFilestring) Then<br />
    Wscript.Quit<br />
End If<br />
If (objFS1.FolderExists(FolderLocation)) Then<br />
Else<br />
Call objFS1.CreateFolder(FolderLocation)<br />
End if  </p>
<p>and it works<br />
since we replace the signatures withv version numbers the old ones get deleted when updated by the script</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AD Based Outlook Email Signature for 2003 and 2007 - MOVED &#171; Brad Marsh&#8217;s Weblog</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-291</link>
		<dc:creator>AD Based Outlook Email Signature for 2003 and 2007 - MOVED &#171; Brad Marsh&#8217;s Weblog</dc:creator>
		<pubDate>Mon, 19 Jan 2009 21:17:01 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-291</guid>
		<description>[...] http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007 [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007"  rel="nofollow">http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bradmarsh</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-44</link>
		<dc:creator>bradmarsh</dc:creator>
		<pubDate>Fri, 21 Nov 2008 01:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-44</guid>
		<description>Adrian,

Your most welcome. :)</description>
		<content:encoded><![CDATA[<p>Adrian,</p>
<p>Your most welcome. <img src='http://bradmarsh.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-43</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Thu, 20 Nov 2008 12:32:35 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-43</guid>
		<description>Brad,

I've taken the new code and propagated it through our network and it works brilliantly.

Thanks for the assistance!</description>
		<content:encoded><![CDATA[<p>Brad,</p>
<p>I&#8217;ve taken the new code and propagated it through our network and it works brilliantly.</p>
<p>Thanks for the assistance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bradmarsh</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-42</link>
		<dc:creator>bradmarsh</dc:creator>
		<pubDate>Thu, 20 Nov 2008 00:53:35 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-42</guid>
		<description>Ok here is the fix for 07, not the best but it seems to work
http://bradmarsh.wordpress.com/2008/11/20/ad-based-outlook-email-signature-for-2003-and-2007-part-4-now-writes-txt-and-rtf-as-well-as-html/</description>
		<content:encoded><![CDATA[<p>Ok here is the fix for 07, not the best but it seems to work<br />
<a href="http://bradmarsh.wordpress.com/2008/11/20/ad-based-outlook-email-signature-for-2003-and-2007-part-4-now-writes-txt-and-rtf-as-well-as-html/" onclick="javascript:pageTracker._trackPageview('/outbound/comment/http://bradmarsh.wordpress.com/2008/11/20/ad-based-outlook-email-signature-for-2003-and-2007-part-4-now-writes-txt-and-rtf-as-well-as-html/');" rel="nofollow">http://bradmarsh.wordpress.com/2008/11/20/ad-based-outlook-email-signature-for-2003-and-2007-part-4-now-writes-txt-and-rtf-as-well-as-html/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bradmarsh</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-41</link>
		<dc:creator>bradmarsh</dc:creator>
		<pubDate>Wed, 19 Nov 2008 09:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-41</guid>
		<description>Hi Adrian,
Thanks for the praise.

Yes I know I have this same problem  really need to put sometime aside for this. I promise I will try this over this week at some stage - things have been so hectic of late :(</description>
		<content:encoded><![CDATA[<p>Hi Adrian,<br />
Thanks for the praise.</p>
<p>Yes I know I have this same problem  really need to put sometime aside for this. I promise I will try this over this week at some stage - things have been so hectic of late <img src='http://bradmarsh.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://bradmarsh.net/index.php/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-40</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Wed, 19 Nov 2008 07:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://bradmarsh.wordpress.com/2008/02/18/ad-based-outlook-email-signature-for-2003-and-2007/#comment-40</guid>
		<description>Brad, I am really keen to see whether you are able to resolve the reply to plain text email problem.

We are running a mixed environment of XP/Outlook 2003 and Vista/2007. The script works flawlessly on Outlook 2003, but fails to create the .rtf and .txt files on Outlook 2007.

I am almost ready to deploy this script across our network, and really this is the only flaw I can see to an exceptionally worked script.

A pat on the back also for sharing your knowledge and continuing to assist others.</description>
		<content:encoded><![CDATA[<p>Brad, I am really keen to see whether you are able to resolve the reply to plain text email problem.</p>
<p>We are running a mixed environment of XP/Outlook 2003 and Vista/2007. The script works flawlessly on Outlook 2003, but fails to create the .rtf and .txt files on Outlook 2007.</p>
<p>I am almost ready to deploy this script across our network, and really this is the only flaw I can see to an exceptionally worked script.</p>
<p>A pat on the back also for sharing your knowledge and continuing to assist others.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
