Signatures in Outlook

I`m just wondering if someone can help me with this. We are having difficulties with the scrept that previous IT guy created. Suddenly it gives us the following error:
Script :
'====================
' NAME:     CreateOutlookSignature.vbs
' AUTHOR:     Tim Bosinius, Tractebel Gas Engineering GmbH
' DATE :     15.07.2005
' COMMENT:    This script will extract Active Directory user information and
'            create Outlook HTML signatures based on a XSL template.
'            It is designed to work on any windows machine that has ADSI, WSH
'            and some XML version installed. In theory any Windows machine
'            from Windows NT 4.0 (which DsClient & IE 6.0) and above.
'            If AD isn't your first choice (well it should be, because you know
'            for sure that if the user can log onto the network that script will
'            work), you can easily modify it and use some database or whereever
'            you get your user Information in XML form.
'            I tried to make it as generic as possible, but modifications in
'            in the XSL file are required. You need to change the registry
'            for your Outlook version - see buttom for more details.
'            There isn't any error checking included, which might be a good
'            idea after all. I dropped it for the sake of readablity.
'            If you ask yourself why I sometimes use a hungarian notation,
'            and sometimes not - I cannot tell you. This is a habit that I developed
'            over years. I basically only use it for strings and longs.
'            There is one thing about the output HTML that I don't understand.
'            In the XSL I use the following line:<xsl:text>   </xsl:text>
'            this should be converted to   in HTML - but it will be a space in the
'            output file. If you know where I made the mistake - pls let me know
'            Anybody can use this script. It would be nice if you drop me a mail With
'            your comments on the script.                 [email protected]
'====================
' Note from : use command parameters without switches to launch script
' usage: signature.vbs _Official signature.xsl
' will create a new signature called _Official using signature.xsl for format
' contact me with any questions: 
'====================
Dim oShell
Set oShell = WScript.CreateObject ("WSCript.shell")
Dim strSigName, strXSL 'store values here
Dim intCount 'use for counting 
Set objArgs = WScript.Arguments
For Each varArg in ObjArgs
intCount=intCount+1
If (intCount=1) then
msgbox varArg
strSigName=varArg
End If
If (intCount=2) then
'msgbox varArg
strXSL=varArg
End If
Next
Set oShell = Nothing
Const adPersistXML = 1
Const ForWriting = 2
Const REGSIGKEY = "HKCU\Software\Microsoft\Office\10.0\Common\MailSettings\NewSignature"
Dim XML,XSL, FSO
Dim WshShell, WshNet, rsAD, Com, ConAD, f
'We need to get details from attributes that are only available from the LDAP provider
'We cannot assume that the AdsSecurity.DLL is available on the client to retrieve our DN
'What we do know, is who we are (samaccountname) and that must be unique within a domain
Set WshNet = WScript.CreateObject("WScript.Network")
sUsername = WshNet.UserName
'Wscript.Network knows the Netbios Domain, but we might not know our DNS domainname
sPrefix = "LDAP://"
Set cont = GetObject(sPrefix & "rootdse")
sDN = cont.get("defaultnamingcontext")
'Alright - we are now prep'd to do a little search to get our adspath...
'We will open an ADO connection to AD
Set conAD = WScript.CreateObject( "ADODB.Connection" )
Set com = WScript.CreateObject( "ADODB.Command" )
'set the provider
conAD.Provider = "ADSDSOObject"
' Open a connection object
conAD.Open "Active Directory Provider"
Set Com.ActiveConnection = conAD
'what do we want to find - well our details...
sFilter = "(samaccountname=" & sUsername & ")"
'what do we need to know?
sAttributes = "givenname,sn,ipPhone,telephonenumber,mail,Streetaddress,l,st,postalcode,co,mobile,company,facsimileTelephoneNumber,title,department,wwwHomepage"
'build the command string
Com.CommandText = "<" & sPrefix & sDN & ">;" & sFilter & ";" & sAttributes
' Set some preferences for search
Com.Properties( "Page Size" ) = 512
Com.Properties( "TimeOut" ) = 30 ' seconds
'Execute the query to get our objects from Active Directory.
Set rsAD = CreateObject("ADODB.Recordset")
Set rsAD = Com.Execute
If (Err.Number <> 0) Then
    WScript.Echo Err.Number, "on Execute"
End If
'WScript.Echo "LDAP user objects:" & rsAD.RecordCount  'for testing
Set xml = CreateObject("Microsoft.XMLDOM")
rsAD.Save xml, adPersistXML
XML.async = False
Set xsl = CreateObject("Microsoft.XMLDOM")
xsl.async = False
'Load the XSL file. We keep it in the same path as the script, but it could be stored anyway. e.g. Webserver
'strXSL="\\iservices\netlogon\signature.xsl" 
' msgbox strXSL
xsl.load "\\iservices\netlogon\signature.xsl" 
xsl.preserveWhiteSpace = True
'Lets Save the signature file to disk to the profile - we are aiming for the Outlook signature path
Set WshShell = CreateObject("Wscript.Shell")
'sUserProfile = WshShell.ExpandEnvironmentStrings("%UserProfile%")
sUserProfile = WshShell.ExpandEnvironmentStrings("%appdata%") 
msgbox(sUserProfile)
sSignaturePath= sUserProfile & "\Microsoft\Signatures\"
msgbox sSignaturePath
sOutputfile = sSignaturePath & sUserName & ".htm"
'sOutputfile = sSignaturePath & strSigName & ".htm"
'msgbox sOutputfile
Set FSO = CreateObject("Scripting.Filesystemobject")
'create directory if it does not exist
if (not FSO.FolderExists (sSignaturePath)) Then
'create directory
Set objFolder = FSO.CreateFolder(sSignaturePath)
End if
msgbox sOutputFile
Set f = FSO.OpenTextFile(sOutputFile,ForWriting,True)
f.Write XML.transformNode(xsl)
'Make it the default signature, if no signature is set.
'Now here I don't know how to make the office version generic.
'The registrykey path depends on the version of Outlook. If you have PCs that have been upgraded,
'or that run a mixture of Office 2000,XP,2003 - how do you easily find out which registrypath you should take?
On Error Resume Next
sRegKey = "" & WshShell.RegRead(REGSIGKEY)
If sRegkey ="" Then
    WshShell.RegWrite REGSIGKEY, "AD_" & sUsername, "REG_SZ"
End If
On Error GoTo 0
So the error is on this line:
f.Write XML.transformNode(xsl)
here is the XML template:
<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema" exclude-result-prefixes="rs z">
<xsl:output
method = "html"
doctype-public = "-//W3C//DTD HTML 4.01 Transitional//EN"
encoding = "UTF-8"
indent = "yes"/>
<xsl:template match="/">
<html><head></head>
<body>
<p>
<span style="font-size: 11pt; font-family: arial">
<xsl:value-of select="xml/rs:data/z:row/@givenname"/><![CDATA[ ]]>
<xsl:value-of select="xml/rs:data/z:row/@sn"/>
</span>
<span style="font-size: 10pt; font-family: arial">
<br/>
<xsl:if test="xml/rs:data/z:row/@title">
<xsl:value-of select="xml/rs:data/z:row/@title"/>
<br/>
</xsl:if>
<br/>
</span>
<br/>
<img src="\\192.168.100.xx\netlogon\logo.jpg" alt="3PI" style="width:128px;height:96px">
<p>
<i>Powering a <font color="#04B404"> Greener </font> Future</i>
</p>
<span style="font-size: 11pt; font-family: arial">
<xsl:choose>
<xsl:when test="xml/rs:data/z:row/@company">
<xsl:value-of select="/xml/rs:data/z:row/@company"/>
</xsl:when>
<xsl:otherwise>3PI</xsl:otherwise>
</xsl:choose>
<br/>
<xsl:if test="xml/rs:data/z:row/@Streetaddress">
<xsl:value-of select="/xml/rs:data/z:row/@Streetaddress"/> -
<xsl:value-of select="xml/rs:data/z:row/@l"/><![CDATA[ ]]>
<xsl:value-of select="xml/rs:data/z:row/@st"/>,<![CDATA[ ]]>
<xsl:value-of select="/xml/rs:data/z:row/@postalcode"/> -
<xsl:value-of select="/xml/rs:data/z:row/@co"/>
<br/>
</xsl:if>
<xsl:if test="xml/rs:data/z:row/@ipPhone !=''">
Office Direct:
<xsl:value-of select="xml/rs:data/z:row/@ipPhone"/>
<br/>
</xsl:if>
<xsl:choose>
<xsl:when test="xml/rs:data/z:row/@telephonenumber">
Phone:
<xsl:value-of select="xml/rs:data/z:row/@telephonenumber"/>
<xsl:if test="/xml/rs:data/z:row/@facsimileTelephoneNumber">
Fax:
<xsl:value-of select="/xml/rs:data/z:row/@facsimileTelephoneNumber"/>
</xsl:if>
<br/>
</xsl:when>
<xsl:otherwise>
Phone: Fax:
</xsl:otherwise>
</xsl:choose>
<xsl:if test="xml/rs:data/z:row/@mobile">Mobile:
<xsl:value-of select="/xml/rs:data/z:row/@mobile"/>
</xsl:if>
<br/>
<xsl:choose>
<xsl:when test="xml/rs:data/z:row/@wwwHomepage">
<a href="{xml/rs:data/z:row/@wwwHomepage}">
<xsl:value-of select="/xml/rs:data/z:row/@wwwHomepage"/>
</a>
</xsl:when>
<xsl:otherwise>
<xsl:text>&#10;</xsl:text>
<a href="http://www..com">www..com</a>
</xsl:otherwise>
</xsl:choose>
<br/>
<xsl:text> </xsl:text>
<br/>
<a href="mailto:{xml/rs:data/z:row/@mail}">
<xsl:value-of select="xml/rs:data/z:row/@mail"/>
</a>
<br/>
<xsl:text> </xsl:text>
<br/>
<xsl:text>CONFIDENTIALITY NOTICE</xsl:text>
<br/>
<xsl:text>This is electronic mail from 3PI and is intended only for the person(s) named above. It may contain information that is confidential, privileged, and/or exempt from disclosure under applicable law. DO NOT READ THIS EMAIL IF YOU ARE NOT THE INTENDED RECIPIENT. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is STRICTLY PROHIBITED. If you receive this communication in error, please notify us immediately by email and destroy the original transmission and its attachments), if any, without reading or saving in any manner.</xsl:text>
</span>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Alex

Hi,
The Scripting Guys forum is here:
https://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG
EDIT: Make sure you detail what troubleshooting steps you've already taken. Threads that contain broken code and a request to fix it without showing effort on your part aren't generally well received there.
Don't retire TechNet! -
(Don't give up yet - 13,225+ strong and growing)

Similar Messages

  • Outlook 2013 Signatures not showing up at all after transferring signatures from Outlook 2010

    Hello, 
    first time on here asking a question needing help.  I recently bought a new machine, windows 7 Pro and Outlook 2013. I successfully brought over my .pst files from my old machine running Outlook 2010, Windows 7. This was great and easy, got to keep
    all my settings, rules, and private folders for Outlook 2010 right into Outlook 2013.  Then it was time to move my signatures over, I did so with ease however when I went to my signatures in 2013, NOTHING was present, not 1 out of 30 signatures I have.
    I sure dont want to rewrite each one over again. I restarted, made sure the signatures were in the right spot in Outlook 2013. I also tried putting the signatures in another folder and importing them in, nothing.  What is the deal?  Can someone please
    tell me what I'm doing wrong or has anyone had this issue?  Please help. and thanks. 

    Just to check, so you went into C:\Users\%username%\AppData\Roaming\Microsoft\Signatures on your old machine and copied ALL of the files & folders you found there, and moved them over to the same folder location on your new machine.
    After doing that when you start Outlook and look in File, Options, Mail, Signatures you see nothing listed under "Select signature to edit" at all?

  • Signature in outlook express

    http://www.aurorabiomed.com/signature.htm
    i made this table to be used as signature in my outlook, but
    when i inserted it in outlook it looks different. i have attached a
    css to the fonts to use verdana but when i had it in my email form
    it shows another font and different size & also the link color
    is different. how can i maintain the format i made in dreamweaver
    so when i insert it in outlook it stays the same?
    thanks!!!
    web rookie

    Not an entirely satisfactory solution but changing to plain text seems to get around this problem.

  • Problems with Email Signature in Outlook

    Hi everyone,
    I've been trying to create an email signature for my office that can be viewed correctly in any browser/ email client/ platform. I'm currently designing/ coding on a Mac.
    I created the design for it in Photoshop and then sliced it appropriately.
    Saved it on a sever (PhotoBucket) so all the images are hosted.
    Next I created a table in Dreamweaver and added each sliced image from the server into each appropriate table cell until it was formatted correctly.
    Then I added in links to a majority of the images:
    i.e. image links to company website, Facebook and twitter accounts; mailto links for the email address; and a "a href="tel:..." for the company phone numbers
    Then I saved and opened it in Safari, copied it, and pasted into signatures.
    Everything works great/ looks great as far as formatting and coding - essentially everything 'works' when I open it in Safari or Chrome etc. The problems start when I copy it into Outlook and send it out.
    Problems I'm having:
    1. When i send a blank email the signature looks good from my Mac Outlook. On some PC's Outlook the table is splitting up into individual cells and stacking on top of each other. On other PC's it looks fine.
    2.  The signature in the body of the email does not move along with newly typed text. Instead it overlaps and covers any text that is under it.
    3. When I try testing by sending the signature to a Gmail account, the images come as individual attachments or individual links- a huge annoying mess.
    Different things I have tried:
    1. Using HotSpots instead of image links: although it shows up on Safari, the links to not work in Outlook.
    2. Not hosting images, but instead linking directly from my Mac.
    Is there anything I'm missing? Or is what I'm trying to do (Create an email signature that is functional and clickable) simply not possible?
    I'd appreciate any advice!
    Thank you

    I've been trying to create an email signature for my office that can be viewed correctly in any browser/ email client/ platform. I'm currently designing/ coding on a Mac.
    I created the design for it in Photoshop and then sliced it appropriately....
    I think i'll stop you there. Email signatures do not require images and you should maybe think about having everything as text. You will no doubt be emailing people outside your company and lots of people don't have images turned on by default (hotmail, yahoo, outlook) so if you have any contact information in there, or your name, they won't see it!
    At the most I would have a small image of the company logo next to your information in text, and all the social media links as text as well.

  • How to create SHA2 signature in Outlook 2013?

    My company has upgraded all Office software recently, from Office 2007 to Office 2013.
    In Outlook 2007, I can create email with SHA2 signature. However, I can't find the same configuration in Outlook 2013.
    Does anyone have the same problem?

    My support contact couldn't find any support cases or bug reports - he found this article
    http://blogs.technet.com/b/pki/archive/2010/09/30/sha2-and-windows.aspx but it wouldn't apply here, since Outlook 2013 doesn't run on the older OS's and the newer OSs support SHA2. I recommend opening a support case - if this is a recently purchased copy
    of Office, you may be within the window for free support calls.  
    Diane Poremsky [MVP - Outlook]
    Outlook & Exchange Solutions Center
    Outlook Tips
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • How do I add a Linkedin button to my email signature in Outlook 2011?

    Hi,
    I'm trying to add a Linkedin button to my emails, or an image of a linkedin button hyperlinked to my profile, but not having much luck. I'm using a Macbook Pro with Lion and my email client is Outlook 2011.
    Does anyone have any idea how to do this?
    Cheers,
    Alex

    I would like to know how to do this as well. All I'm able to do is add the link, but not the button. My colleague has done this on his Outlook on his HP. I'm not sure why this is so difficult!

  • Add custom content before E-Mail signature. In outlook add-in c# développment

    Hello,
    I have make an add-in 2013 for outlook project in C#. I upload on a server some file and put in the mail body the link to them. But i want to add this 'link part' before the E-mail Signature. How could I do that?
    I have healready see code that enable me to get the signature file and read them. But i didn't know if it work on all the os and Outlook version. And the file is not copy past on the end of the body mail. So it didn't help me at all.
    Ask me for more information if needed.
    I thanks you for you're help.

    Aurelien,
    When you create a signature in Outlook three files (HTM,
    TXT and RTF) are created in the following folder:
    Vista and Windows 7/8:
    C:\Users\<UserName>\AppData\Roaming\Microsoft\Signatures
    Windows XP :
    C:\Documents and Settings\<UserName>\Application Data\Microsoft\Signatures
    "Application Data" and "AppData" are hidden folders, change the view in Windows explorer so it show hidden files and folders if you want to
    see the files.
    So, you read the content of these files and try to find the corresponding content in the message body. Note, users may type a custom signature in the end of
    emails.

  • Is this a bug of Outlook 2007 about images displaying in signature?

    I've done many tests and researched on website or MS KB. But still got no solution.
    My issue is:
    I make a signature with images linking from website which can be easily accessed.
    I setup this signature in Outlook 2007, when I compose a new mail, and choose the signature I set. It won't show the images with a high percentage rate, meanwhile, I try to get into "Signature"-"Signature...", 
    Outlook2007 gets stuck, then you can not close Outlook or open Internet Explorer unless you kill the process of OUTLOOK.exe.
    1. Test are done under a clean XP system and Office 2007 standard fresh installed. Also there are some other staffs who help me test the signature that report the same issue on Office 2007.
    2. Images are rendered in 96dpi. They are all in very small size stored on website, can be easily accessed without network connctivity problem.
    3. The signature is made by simple HTML language not by Outlook signature setup wizard. but in this case,  you can ignore which method I use to create the signature. The images in signature can be displayed well in Outlook 2003 &
    2010. Also I have tried insert images using "link to file" in Outlook signature setup wizard, got same issue.
    4. Don't suggest me to store the images locally. These images should be updated after a period. You can not ask the company staffs to update these images manually by themselves. and even if the images are stored locally, the images won't be shown
    in Outlook 2007 with a high percentage rate.
    5. I've tried setup signature with or without an account profile, got same issue.
    6. I 've tried without an accout profile, just copy the signature file to Outlook signature folder, unplug the network cable, and "new mail" then load the signature, of course, the images won't be shown because network connection doesn't exist,
    and then when I try to get into "Signature"-"Signature...",  the Outlook interface also gets stuck. So I think Outlook 2007 may have some problem on detecting the network connectivity.
    7. It is not possible to upgrate the version of Office. Since Office 2007 isn't out of date and is powerful enough for us, no one want to pay more money just to avoid this issue.
    I don't know why I cannot upload a screenshot for troubleshooting. If needed. I can send a mail with screenshot attached.
    So far to now, I still get no solution, I think this is a bug of Outlook 2007, because the same signature, there is no problem on Outlook 2003 & 2010. Hope someone of MS staff can see this article and report to technical support center.
    I would appriciate anyone's kindly help but please consider that you understand what I am talking about. I don't want to waste time for each of us.
    thanks in advanced.

    What kind of problem about the display image in signature?
    How do you add the image into the message body when you send the message?
    Does it show correct through Web-based access?
    Outlook 2007 doesn't support some of Style Element, you may reference the link as below:
    http://www.campaignmonitor.com/css/
    Thanks.
    Tony Chen
    TechNet Community Support
    Thanks for your reply,  I know that some Style Elements won't be supported in Outlook, but this is not the reason.
    Please refer to my post previously, I post it but get no response.
    http://social.technet.microsoft.com/Forums/office/en-US/481170b1-f23f-4d46-9914-823326491846/is-this-a-bug-of-outlook-2007-about-images-displaying-in-signature?forum=outlook

  • Setting Default Outlook Signature By Group Policy

    Hi
    I am attempting to standardise our company's email signature for all users. A contact supplied me with a VBA script which generates a signature based on the user's AD information. This works great but I would like group policy to set this signature as default
    to prevent users from making changes. From various Google searches, it seems that the default signature can be set by GP, but I can't seem to make sense of any of the posts that I find. This may be because I am new to GP and don't understand the context. Any
    suggestions as to what would be the best way to approach this?
    Thanks
    Steve

    Hi Steve_Flynn,
    According to your description, you would like to set default Outlook signature using group policy. Right?
    Based on my knowledge, the signature file is located in the path %userprofile%\AppData\Roaming\Microsoft \Signatures on Windows Vista, Windows 7, or Windows 8. And then we need to configure the related registry key
    HKEY_CURRENT_USER\Software\Microsoft\Office\x.0\Common\MailSettings or
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\x.0\Common\MailSettings.For more information, please refer to the following article:
    How to deploy a default email signature in Outlook
    http://support.microsoft.com/kb/2691977/en-us
    We can deploy the signature file and configure the registry key via Group Policy to resolve the issue. For your information, please refer to the following article to learn more:
    Configure a File Item
    Configure a Registry Item
    What's more, please refer to the following article to learn how to realize it via a script:
    Setting Up Outlook E-Mail Signatures
    Regards,
    Lany Zhang

  • Outlook signature

    We are using a vbscript to assign a Outlook 2010 signature to the users that are logging in the network.
    A few things are a problem. First the logo is different when we open it in a editor it looks sharp etc. In Outlook it looks less sharp and smaller or larger. I have read that this is because Outlook is making a 96 dpi image of it. So i saved the jpg as a
    96 dpi image but then it becomes 500 kb so thats to large.
    The second problem i have is the color of the text in the script. Whatever i use for color the color is not much changing in Outlook. It looks much lighter then the color code says. Below is a part of the script. Is there something not right?
    For example i have made the color www.company.com magenta but it stays the same in Outlook after restarting the system twice. It is also not underlined anymore so it is not a link. Something in the code must be wrong....
    Between the lines the fonts are made arial 10 pt and a kind of darkgrey, but in Outlook it isgrey, also when you print it..
    Outlook seems to do things on his own or is ignoring the script language in this case?
    Set objSysInfo = CreateObject("ADSystemInfo")
    strUser = objSysInfo.UserName
    Set objUser = GetObject("LDAP://" & strUser)
    strVoornaam = objUser.FirstName
    strAchternaam = objUser.LastName
    strTitle = objUser.Title
    strDepartment = objUser.Department
    strCompany = objUser.Company
    strPhone = objUser.telephoneNumber
    strFax = objUser.FacsimileTelephoneNumber
    strMobile = objUser.Mobile
    strLand = objUser.st
    strGroet = objUser.StreetAddress
    strDescription = objUser.Description
    strOffice = objUser.PhysicalDeliveryOfficeName
    strMail = objUser.Mail
    strWeb = objUser.wWWHomePage
    strPObox = objUser.postOfficeBox
    strCity = objUser.l
    strZip = objUser.postalcode
    strHome = objUser.HomePhone
    strIP = objUser.ipPhone
    strNotes = objUser.info
    Set objWord = CreateObject("Word.Application")
    objWord.Visible = False
    Set objDoc = objWord.Documents.Add()
    Set objSelection = objWord.Selection
    objSelection.Style = "No Spacing"
    Set objEmailOptions = objWord.EmailOptions
    Set objSignatureObject = objEmailOptions.EmailSignature
    Set objSignatureEntries = objSignatureObject.EmailSignatureEntries
    objSelection.Font.Name = "Arial"
    objSelection.Font.Size = "10"
    objSelection.Font.Color = RGB(47,79,79)
    objSelection.Font.Bold = True
    objSelection.TypeText " with kind regards," & Chr(11)
    'If strGroet = not "" then objSelection.TypeText strGroet
    'objSelection.TypeText ","
    ObjSelection.TypeText Chr(11)
    objSelection.TypeText strForname & " "
    objselection.TypeText strBack & Chr(11)
    objSelection.TypeText strTitle & " "
    objSelection.TypeText strNotes & Chr(11)
    'objSelection.TypeText Chr(11)
    'ObjSelection.TypeText Chr(11)
    Set objShape = objSelection.InlineShapes.AddPicture("\\path\logo.jpg") & Chr(11)
    ObjSelection.TypeText Chr(11)
    objSelection.TypeText "Internet: "
    objSelection.Font.Name = "Arial"
    objSelection.Font.Size = "10"
    objSelection.Font.Color = RGB(255,0,255)
    objSelection.Font.Italic = False
    objSelection.Font.Bold = False
    If strWeb = "" Then
    objSelection.TypeText "http://www.company.com" & Chr(11)
    'objSelection.TypeText Chr(11)
    else objSelection.TypeText strWeb & Chr(11)
    End If
    objSelection.Font.Name = "Arial"
    objSelection.Font.Size = "9"
    objSelection.Font.Color = RGB(47,79,79)
    objSelection.Font.Italic = False
    objSelection.Font.Bold = True
    freddie

    I am struggling to get a nice signature in Outlook 2010. The signature is created with a VB script that runs when a user logs in on the system.
    The problem is the color for the text in the signature and the logo.
    If i put a RGB value in the script for the color of the text, the text keeps getting another color for example i have given the value RGB(47,79,79) is almost the same as (81,82,82) displayed although this is a much different tint...
    Another problem i am getting is with the logo: Made a logo which is resized in Outlook. I have already read on howto-Outlook site that Outlook is resizing the image to 96 DPI. So i did just that but then the picture is 500 KB big so i would like an image
    for lets say in print size 0.8 x 2.0 cm (not inch..) high and in good quality.
    What i found strange: opening the signature in Outlook with CTRL pressed gives the htm file whre the signature is: opening that in Word 2010 the signature sees the color much darker then Outlook does? And the image is larger then when displayed in Outlook..
    It looks that every change i make to the color of the text or the image it does not change in Outlook 2010 but when choossing in the options in Outlook in options-email-ctrl on signature and then edit the signature.htm the changes are displayed...not in
    Outlook but the changes are in the signature file when displaying in Word?
    How to overcome above problems?
    freddie

  • Problem with Signature tab drop down in Outlook for Mac 2011

    I am setting up Outlook 2011 on my mac and have run across a problem with the signatures that I have been unable to resolve.
    I have set up 2 signatures for my two different pop accounts and thought that if I defaulted them to their appropriate account they would automatically be seen in email when I had chosen the corresponding email account. I then discovered that it was not
    possible to do this in Outlook 2011 for Mac.
    So I selected NONE as the defaults for my two signatures, and thought I would be able to manually add the appropriate signature to each email as I compose or reply.  BUT NO!!!! THE PROBLEM LIES BELOW:
    The 2 signatures that I set up are visible in the drop down menu from the signature tab in an email, however they are greyed out and cannot be selected.  I have attempted selecting one of these signatures as the default, and whichever one
    I select dutifully appears when I compose a new email, but when I click on the drop down to change the signature, both are still greyed out.
    So effectively, I only have the option of one signature or none, despite being able to set up multiple signatures in my profile.
    Does anyone know why this is occurring and what the solution is?
    Thanking you in advance.

    Hi,
    Please remove the Signature and re-add it back to check whether the issue persists. We can follow the articles below to create signature in Outlook 2011 for Mac:
    How to create signature or customize it (add picture) in Outlook for Mac 2011
    http://support2.microsoft.com/kb/2455171/en-us
    Add a signature automatically to every message
    http://office.microsoft.com/en-001/mac-outlook-help/add-a-signature-automatically-to-every-message-HA102928243.aspx
    If the new created Signature is still greyed out in your Outlook, please restart the Outlook client in safe mode to confirm if the issue is caused by any third-party add-ins.
    If the issue persists in Outlook safe mode, I suggest you ask a question in Outlook for Mac forum for further troubleshooting:
    http://answers.microsoft.com/en-us/mac/forum/macoutlook?tab=Threads
    Regards,
    Winnie Liang
    TechNet Community Support

  • Alphabetise Signatures / Outlook For Mac

    I previously utilized Entourage with my e-Mac.  I have since upgraded to an i-Mac which utilizes Outlook For Mac.  The signature file with Entourage would automatically place my Signature options in alphabetical order.  Is there a way to alphabetize
    these Signatures in Outlook For Mac?
    Spartacus 57

    You are still posting in the wrong place.  This site is for Microsoft and not Mac.  You need to post in the Mac forums.
    This is also not a customer support forum.  It is for Windows Administrative scripting only.
    ¯\_(ツ)_/¯

  • Outlook 2010 - Losing image in signature after reboot

    Hi,
    I have a user that uses Outlook 2010, they have a standard signature and after a reboot they have lost an image within it.
    Its a Written signature in the signature to make things worse.
    The rest of the content remains, just the one image is missing. I think its a .BWG file. They are hitting save, I went through the same steps.
    Thanks in advance.

    Hi,
    When we create a signature in Outlook, it's stored in the following location on your computer:
    Windows XP
    C:\Documents and Settings\%username%\Application Data\Microsoft\Signatures
    Windows 8, Windows 7 and Windows Vista
    C:\Users\%username%\AppData\Roaming\Microsoft\Signatures
    Please go to the location and find the user's signature, double click to open it and check if you can see the image there.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support

  • How to delete existing e-mail signature for all users in outlook 2010

    Dears,
    How to delete existing (or reset to none ) e-mail signature for all users .
    If anyone knows where I can find this script or another way of accomplishing this I would be very thankful.
    outlook Version : 2010
    PS : Not to disable.
    Khaja Hameed

    If you want to manage signatures for multiple users your best bet is to use Group Policy.
    See:
    Setting up a Corporate Signature | HowTo-Outlook
    http://www.howto-outlook.com/howto/corporatesignatures.htm
    <p>Eric Legault (<a href="https:/mvp.support.microsoft.com/default.aspx/profile/legault">MVP: Outlook</a>)<br/> <a href="http://about.me/ericmlegault">About me...</a><br/> <a href="http://www.outlookappins.com/products/social-contacts">Outlook
    Appins</a>: Store Social Media fields in your Outlook Contacts!</p>

  • Outlook signature deleted

    Everytime I sync my blackberry storm I lose my signature in outlook.  Any help would be appreciated.

    Hi,
    Please check the signatures templates per signature, one for each email format and see what's the content:
    Plain Text-> <signature name>.txt
    HTML-> <signature name>.htm
    Rich Text-> <signature name>.rtf
    You can find the files here:
    Windows Vista, Windows 7 and Windows 8 - C:\Users\%username%\AppData\Roaming\Microsoft\Signatures
    Windows XP - C:\Documents and Settings\%username%\Application Data\Microsoft\Signatures
    Also, check if the old signature templates are still there, if yes, delete them and try again.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for

  • NetBoot across subnets with a bootpd relay

    Hello Apple Community! I've got 4 subnets at my school, each with various Macs around campus.  I have a Mavericks server on each subnet currently, each with their own NetBoot images.  It's a pain to keep everything updated.  I can get a single client

  • Create a new item in iProcurement Receive items Region

    HI, I am trying to create a new search Message Input LOV called Supplier Part Number in the 'Receive items: Select items' Internet Procurement page Scope Region: /oracle/apps/icx/por/rcv/webui/IcxPorRcvSrchPG.RcvItemQuery Document Name /oracle/apps/i

  • Any ideas on why I can't download the latest itunes?

    I am trying to download the latest iTunes (10.2.1) to my PC, but I'm running into all sorts of trouble. OS is Windows 7. When I first tried downloading it, I got the following message: C:\Users\Jelli\Downloads\iTunes64Setup(1).exe.part could not be s

  • Can't Completely Delete a Time Machine Backup

    How do I completely delete a Time Machine Backup? In Snow Lepord I had no problem with deleting a Time Machine Backup. I back up my HHD on a external HHD. Since using Time Machine with Lion the back ups are not being fully deleted. My trash can each

  • [Help !]Exporting more than 2 audio tracks impossible ?

    Hi all, I am trying to export a sequence with 6 audio tracks using *Menu->File->Export->Using Quicktime conversion...* and it seems to be impossible to export to more than 2 audio tracks ! If I use the option Export->Quicktime movie I can export my 6