Adding an S/MIME certificate to an existing contact in Outlook 2013

In previous versions of Outlook (e.g. 2010) when you received an S/MIME signed certificate from an external party you could right click on their name in the message and select "Add to Outlook Contacts". This would then store the cert in a contact
for future use. If a contact already existed then it would prompt you to
update the contact with the additional information including the certificate.
In Outlook 2013 this process appears to be broken (for
existing contacts at least).
When right-clicking on their name in a signed message you don't get the "Add to Outlook Contacts" option. You only get "Edit Contact" which brings up the new "Contact Card" dialog which has no information about certificates.
If you make a change there and save then the certificate is not stored in the contact.
You can confirm this by right-clicking the sender in the signed email and selecting "Open Outlook Properties" (do not select "Open Contact Card"). In this view click the "Certificates" button in the header and you will see that
there are no certificates associated with the contact.
You can, I guess, export the certificate to disk and then import it into the contact via the Outlook Properties dialog but this is tedious.
Any ideas how to work around this and update an existing contact with an S/MIME certificate?
Any ideas why the certificate information is not accessible in the new Contact Card dialog? Seems unfortunate for those of us using S/MIME.

Hi Barry,
As per the following article, http://office.microsoft.com/en-us/outlook-help/get-a-digital-id-HA102748952.aspx and specifically the following section:
Add a recipient's digital ID to your Contacts, the ability to see the Certificates depends on the view in which you are opening the Contact card.
In the People or Business Card view we cannot see the Certificates button.
In the Card, Phone or the List view we can see the Certificates tab where the Certificates can be seen.
So to work around this behavior, for new contacts you should Add to Outlook Contacts and then go into the People Pane and Check the Certificates tab to get the cert details.
If you already have the contact added then it becomes a little tricky.
In that case the Certificate is not updated on the "old contact". In such cases I would delete the existing contact and from the latest e-mail that I received, I would Add to Outlook Contacts and that should then get you the new Cert that you received.
If you still cannot access the Certificate information, I would call in and work with someone from the Outlook team to assist you further with this request.
Hope this helps!
Kartik Kashinath MSFT

Similar Messages

  • Bug: Adding number to existing contact from a sms msg

    A friend sent me an updated number in a txt message and I attempted to replace his existing number with the one in the txt message. I tapped the little blue arrow next to the txt message on my iPhone 4 and got a screen in which the phone number was listed with the following options: 'Call', 'Text Message', 'Create New Contact', 'Add to Existing Contact', and 'Share Contact'. When I tapped on 'Add to Existing', I was presented with a New Contact window. I tried this several times to make sure I hadn't tapped the wrong button. Clicking on 'Create New Contact' caused FaceTime to start up. The other buttons worked properly. Lastly, I tried going back to the sms message and tapping the blue arrow again. This time, the list had a 'FaceTime' button below the 'Text Message' button. The 'FaceTime' button was not there previously. This time, I was able to add to an existing contact and selected my friend. The number was automatically added as an iPhone tagged number, though I'm not sure if my friend has an iPhone 4 or not. He was previously using a Blackberry.

    I have exactly the same problem. Rebooted iPhone but exactly the same:
    Add to new contact starts facetime call. Add to existing contact starts add to new contact dialog.
    This is a bug.

  • I recently added icloud to my PC (windows 8). Anything new syncs between my pc and iphone but I can't get my existing contacts to sync to my PC

    I recently added icloud to my PC (windows 8). Anything new syncs to my PC but my existing contacts, photos, calendar do not sync.

    Hello Paulee,
    Thank you for the details of the issue you are experiencing with iCloud. I found a few articles to address the issues you described.
    I recommend reviewing the section titled "Troubleshooting iCloud Contacts update or setup issues with Microsoft Windows (Microsoft Outlook)" in the following article to troubleshoot the Contacts syncing issue you are experiencing:
    iCloud: Troubleshooting iCloud Contacts
    http://support.apple.com/kb/TS3998
    I recommend the section titled "Troubleshooting on Microsoft Windows (Microsoft Outlook)" in the following article for issues with syncing your iCloud Calendar:
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/TS3999
    I also recommend reviewing the section titled "I added some photos into My Photo Stream on my Windows PC, but they don't appear in My Photo Stream on any of my devices." for adding photos to My Photo Stream:
    iCloud: My Photo Stream troubleshooting
    http://support.apple.com/kb/TS3989
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Adding a new item to an already existing BOM

    Hi,
        I am having a problem adding a new item to an already existing parent BOM.I excute the following code (as per the SDK).
        Dim vProdTree As SAPbobsCOM.ProductTrees
        Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
        'Set Values to the fields
        vProdTree.TreeCode = "Item1"
        vProdTree.TreeType = iProductionTree
        'Set Values to the Assembly parts of the
        'First Assembly
        vProdTree.Items.ItemCode = Excel.Row(Cell1)
        vProdTree.Items.Price = 20
        vProdTree.Items.Quantity = 1
        vProdTree.Items.Currency = "Eur"
        'Adding the Product Tree
        RetVal = vProdTree.Add
        If (RetVal <> 0) Then
            vCmp.GetLastError ErrCode, ErrMsg
            MsgBox ErrCode & " " & ErrMsg
        End If
    If there is no parent BOM production tree with keycode Item1, then when the above code is run for the first time, it works.The issue occurs when I run change my excel, Cell1 to a different value and run the program again. The error states that the code already exists, which is correct, but does not  append the item to the existing BOM.
    I have tried vProdTree.Update, but this line overwrites the original child item in the BOM, rather than appending a new item, which is what I want it to do.
    Any  help is appreciated.
    - Adrian.V

    Your issue here is how the "Items" (which is actually pointing to ProductTree_Lines object) works. It is a List of items, and when you get the object is always pointing at the first item in the list.
    So for example, to add a BOM with two items you would need to set the details of the first Item and then add a line using vProdTree.Items.Add() before setting the values for that item.
    e.g.:
    Dim vProdTree As SAPbobsCOM.ProductTrees
    Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
    'Set Values to the fields
    vProdTree.TreeCode = "Item1"
    vProdTree.TreeType = iProductionTree
    'Set Values to the Assembly parts of the
    'First Assembly
    vProdTree.Items.ItemCode = Excel.Row(Cell1)
    vProdTree.Items.Price = 20
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Add a second item to the BOM
    vProdTree.Items.Add
    vProdTree.Items.ItemCode = Excel.Row(Cell2)
    vProdTree.Items.Price = 50
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Adding the Product Tree
    RetVal = vProdTree.Add
    If (RetVal 0) Then
    vCmp.GetLastError ErrCode, ErrMsg
    MsgBox ErrCode & " " & ErrMsg
    End If
    To do what you want to do, which is get the BOM and add a new item to it, you will need to do this:
    Dim vProdTree As SAPbobsCOM.ProductTrees
    Set vProdTree = vCmp.GetBusinessObject(oProductTrees)
    'Get your BOM by key
    vProdTree.GetByKey("Item1")
    'Add a second item to the BOM
    'First Item exists so you need to add a new row
    vProdTree.Items.Add
    vProdTree.Items.ItemCode = Excel.Row(Cell1)
    vProdTree.Items.Price = 50
    vProdTree.Items.Quantity = 1
    vProdTree.Items.Currency = "Eur"
    'Update the Product Tree
    RetVal = vProdTree.Update
    If (RetVal 0) Then
    vCmp.GetLastError ErrCode, ErrMsg
    MsgBox ErrCode & " " & ErrMsg
    End If
    Method one allows you to add multiple lines as you add the object (which makes more sense), method 2 allows you to get the object after it has been added and add multiple lines to it. This is similar to how the Document_Lines object works.

  • Adding a new DB Node in the existing SharePoint 2007 Farm.

    Hello,
    Recently we got a requirement to add a new DB server (SQL Server 2007) to the existing MOSS 2007 Production Farm. Can any one please help me out to list out the steps that need to be followed for adding the new DB server to the existing Production Farm.
    We are planning to use the new DB server only for holding Content DB's and no plan for any Config DB,SSP DB or Search DB.
    Thanks in advance for your help

    Hi,
    Also I am going to clone from Source app tier (RHEL4) to target app tier (RHEL5)?
    Are there any issue with the platform version changing?There should be no issue -- Just make sure you have all the OS pre-req. software and packages installed on the RHEL5 node.
    FAQ: Cloning Oracle Applications Release 11i [ID 216664.1] -- 13. Can I clone from one operating system version to another?
    Oracle Applications 11i Installation on OEL5 or RHEL5 [ID 730444.1]
    Oracle Applications Installation Update Notes, Release 11i (11.5.10.2) [ID 316806.1]
    Thanks,
    Hussein

  • Free S/MIME certificate to digitally sign .pdf with Acrobat Reader

    Good morning,
    does anyone have idea where to obtain free S/MIME certificate for personal use and TRUSTED by Adobe Reader to digitally sign documents with own digital signature ? (Comodo S/MIME certificates released by GlobalTrust https://www.globaltrust.it/modulo_reg_smime.asp are free but aren't trusted automatically by Adobe)

    Thanks Ben,
    Unfortunately, that video is for acrobat X or above and I cant find the "save as reader extended" option in Acrobat Pro 9.
    Can this be done from this version?
    Thanks again
    Matt

  • Page, controller, or MIME SearchHelp.htm already exists in application Z_ABC

    Hi All,
            I am facing an error while enhancing a view of Standard Component . Error Is
    'Page, controller, or MIME SearchHelp.htm already exists in application Z_ABC'.
    But the view is not Enhanced,So please help me to overcome this.
    Thanks In Advance.
    Thanks & Reagrds
    RR Pradhan

    Hi Gurus, I am facing the same problem, I do not understand when you say that I remove the Z ...  Eliminated BSP application Z????
    Try enhanced "SRQM_INCIDENT_H / IncidentHeaderEF"
    Best Regards.
    JMP.

  • RV110W and QuickVPN - Servers Certificate Doesn't Exist

    After a day of troubleshooting I have finally got the QuickVPN client to work.  I connect however during the connection I get: "Server's certificate doesn't exist on your local computer.  Do you want to quit this connection?" I click no and it connects fine other than this error.  So how do I get rid of this error?
    Also I have exported the client certificate from the RV110 and put it in the quickvpn directory as I saw suggested elsewhere.
    Thanks,
    Clint Johnson
    Here is my log:
    2011/12/21 00:39:44 [STATUS]Connecting...
    2011/12/21 00:39:44 [DEBUG]Input VPN Server Address = ***.***.***
    2011/12/21 00:39:45 [STATUS]Connecting to remote gateway with IP address: **.**.**.***
    2011/12/21 00:39:50 [WARNING]Server's certificate doesn't exist on your local computer.
    2011/12/21 00:39:56 [STATUS]Remote gateway was reached by https ...
    2011/12/21 00:39:56 [STATUS]Provisioning...
    2011/12/21 00:40:06 [STATUS]Success to connect.
    2011/12/21 00:40:06 [STATUS]Tunnel is configured. Ping test is about to start.
    2011/12/21 00:40:06 [STATUS]Verifying Network...
    2011/12/21 00:40:11 [WARNING]Failed to ping remote VPN Router!
    2011/12/21 00:40:14 [WARNING]Failed to ping remote VPN Router!

    I am having the same issue.  I generated a certificate by selecting "Generate a New Certificate" and "Export for Client" which creates a file https.csr that I saved it into C:\Program Files (x86)\Cisco Small Business\QuickVPN Client folder.
    Still get ther same error message. I click not to quit and so it continues to make the connection successfully.
    After connecting though, I cannot see any of my NETWORK Shares.  I can connect to my local intranet by typing in the server address directly in the browser.  However, I cannot see any computers in my network.  I think this is a completely different problem though and should not have anything to do with the certificate issue.
    I need to resolve both these issues.
    I am using Windows 7 Professional from my remote location (home) which is connected to a D-LINK router which is behind a DSL Modem.  I am trying to connect to my Cisco RV-120W router at work.
    Please help.
    Mike

  • Why are security headers not visible when viewing "sent" mail for mail sent with S/MIME certificates?

    I am using an S/MIME certificate to sign my emails using Mail on Mountain Lion 10.8.2.  I have a trusted S/MIME certificate for each of my email accounts.  The certs and private keys are properly installed in the keychain.  I am able to successfully send signed (and optionality encrypted) email and the recipients are all all receiving the emails showing a trusted signed email without having to acknowledge or trust the signature.  So technically the certificates are working.  Obviously the encryption option is only offered when I also have the recipients certficate in my keychain.
    What I am noticing is that when I look in my sent items - (regardless of which email I used as the "sender") - I don't see any indication in the mail headers that the mail was sent with a signed certificate - even though I know the recipient is seeing that the mail is signed with a cert.  I have no way of telling whether I sent the mail as "signed" or "unsiged".  The default is to use the certificate for all outbound emails - unless I specifically uncheck the secure signing option before sending.  In mail that I recieve - sent from others with certs or sent from one of my email accounts to the other - I see the the certificate indication in the email header.
    On rare occasion - I do see the certificate when viewing sent mail - but only for  random sent mails - and so far I believe I have only seen the certificate show up in mail that is sent from my iCloud account.  I can send subsequent mail from iCloud - and still not see the certificate in the sent items.
    Why am I not seeing the Security Header showing the certificate when viewing mail that I have sent in my sent items folder?  Is there some setting that I am not seeing that controls this - or is this a bug in Mac Mail?  Also why does the security header show up for just a handful of sent emails - when hundreds of signed emails have been successfully sent.
    Any help would be appreciated.  The behavior is the same on my other Macs - at least the ones on which the certificates are also installed.
    Also - I don't have my certs installed on my iPhone yet - so I can't tell on the iPhone if the certs are showing up in the sent folder - but I can see the certs on mail that I send to myself from the Mac but receive on the iPhone.
    ~Scott

    I stopped using the S/MIME certs and stopped signing my emails.  Too many recipients were receiving them as "attachements" especially if the recipients email account was on an Exchange server.  My certs have since expired and I have not done anything to further analyze the situation.  My original post was over a year ago and I have long since been on Mavericks.
    To: iddontknowwhoiamsowhat ... I am not totally following your response.  You say you are seeing the exact same issue - yet you are also saying you can look at the sent mails from os x and ios - does this mean that you see the security badges on the sent emails in both os x and ios?  I assume you are on Mavericks?

  • Adding an SSL digial certificate ".cer" file using STRUST

    Dears,
    Could someome please guide to the steps of adding an SSL digital certificate (a file with extension ".cer") using transaction STRUST
    Thanks
    Reda

    Dear Agasthuri,
    Thank you for your reply.
    The point is : whenever the https is installed on a SAP system, after issuing transaction STRUST, we find in the left pane three main nodes / folders : System PSE, SSL server Standard, SSL client SSL Client (Standar.
    We also find a cuboid shaped icon named : File.
    Whenever we right click on any of the three mentioned nodes / folders we get a pull down menu containing either two or three options : Replace, Delete  or Change, Replace , Delete.
    Whenever we right click on the cuboid shaped icon named : File, we get a pull down menu containing only one option : Create.
    None of the above - mentioned options lead to creating a new main node / folder in the left pane.
    Kindly advise.
    Thanks.
    Reda

  • WRVS4400n, QuickVPN, Server's certificate doesn't exist on local computer

    Hi,
      I bought a new WRVS400n recently because it had Gigabit speed, wireless n and a built in VPN server.  The device works perfect except for the Quick VPN client.  I'm a system engineer so I thought I could set it up quite easy just like any other device I configured in the past.  Painfull but it isn't like this.
      I set up the VPN on the WRVS4400n and generated a certificate.  I saved both the client and admin certificate to my pc, I gave them a name to easily make up the difference between both of them.  When placing the certificate in the installed QuickVPN folder, it doesn't seem to get recognised by the QuickVPN software.  When I try to connect, it says 'Server's certificate doens't exist on your local computer'.  I guess the naming convention must meet some kind of format, is that correct?  If so, this should have been described in the documentation.
      Besides that I checked if the required ports used by the VPN server are open on the public port of the device, that is the case.  So It seems I'm quite close to get it working.
      The version of QuickVPN I used is 1.4.2.1.  The WRVS4400n has the latest firmware loaded.
    Kind regards,
    Pieter.

    >I set up the VPN on the WRVS4400n and generated a certificate.  I saved both the client and admin certificate to my pc
    The "certificate for client" should be saved as a .pem file and copied into the install directory of QuickVPN client.
    The "certificate for admin" is used as a backup, which can be used to re-provision the router in case admin needs to reset the router to factory default for any reason. 

  • QuickVPN, Server's certificate doesn't exist on local computer

    Hi,
      I bought a new WRVS400n recently because it had Gigabit speed, wireless n and a built in VPN server.  The device works perfect except for the Quick VPN client.  I'm a system engineer so I thought I could set it up quite easy just like any other device I configured in the past.  Painfull but it isn't like this.
      I set up the VPN on the WRVS4400n and generated a certificate.  I saved both the client and admin certificate to my pc, I gave them a name to easily make up the difference between both of them.  When placing the certificate in the installed QuickVPN folder, it doesn't seem to get recognised by the QuickVPN software.  When I try to connect, it says 'Server's certificate doens't exist on your local computer'.  I guess the naming convention must meet some kind of format, is that correct?  If so, this should have been described in the documentation.
      Besides that I checked if the required ports used by the VPN server are open on the public port of the device, that is the case.  So It seems I'm quite close to get it working.
      The version of QuickVPN I used is 1.4.2.1.  The WRVS4400n has the latest firmware loaded.
    Kind regards,
    Pieter.

    >I set up the VPN on the WRVS4400n and generated a certificate.  I saved both the client and admin certificate to my pc
    The "certificate for client" should be saved as a .pem file and copied into the install directory of QuickVPN client.
    The "certificate for admin" is used as a backup, which can be used to re-provision the router in case admin needs to reset the router to factory default for any reason. 

  • HT1692 I am not able to scroll my contacts. If i add or mahe any change in existing contacts, it appaers at the top of the contacts and freezes rest above the first letter of newly added or changed one. Anyone can help?

    I am not able to scroll my contacts. If i add or mahe any change in existing contacts, it appaers at the top of the contacts and freezes rest above the first letter of newly added or changed one. Anyone can help?

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Adding Previous Recipients overwrites existing Contacts in AB/Contacts

    i had a couple of problems the last time i went into Mac Mail and tried to add my Previous Recipients to my Address Book/Contacts so that i can use this data to AUTOCOMPLETE emails on my MBP, Mac Pro and my iPhone. right now these databases reside solely on the computer that Mail is installed upon so ostensibly adding them manually to AB/Contacts allows you to sync for Autocomplete.
    1. do you have problems with a Previous Recipeint named "John Smith" overwriting a Contact "John Smith" so that now in AB/Contacts you have just an email address instead of the phone number (which i need to make calls)?
    2. is there a way to add these Previous Recipients so that they go into a /specific/ group? i have a ton of groups and currently with the switch to iCloud there is apparently no longer a way to SORT BY UNGROUPED which means i have a ton of contacts that only reside in ALL CONTACTS and this makes life very difficult for finding things.
    3. do you basically maintain the link of these Previous Recipients by going into Previous Recipients on your various machines from time to time and checking to see what has been added to this list but has not been added to AB/Contacts? and then do you manually add these?
    4. is there such a thing as Previous Recipients on my iPhone? i mean, if i reply to a VIP on my iPhone - would i think have to wait until i also replied to his/her email on one of my computers before i had a chance to see that this was a Previous Recipient that had to be added to my contact database?
    TIA for any help or link to url's on this.
    also a shout out to the mac developer crew. i would love to see a way to see globally how all my contacts are or are not sorted into GROUPS. at the very least it would be great to see the ones not in groups so i can make sure everything can be added to the group.
    and finally, i am not a fan of the new UI for Contacts on the iPhone in iOS6. this checkmark business where i have to go through and uncheck All Contacts and then check the individual group(s) i want to see is a major pain from the previous implementation which i don't remember but which i never had a problem with. does anyone know how to manage 20+ groups without contantly clicking on and off things in this UI on the iPhone these days...?

    ThanosD wrote:
    I am not trying to do this via the address-book. I am in the Previous Recipients dialog of Mail.
    that dialog has very limited functionality. as you've found out, if an email is already present in some AB contact it won't let you import it again from the previous Recipients list. and it won't put them in existing contacts. it will always make separate entries. the best you can do is select all (or some) items in previous recipients and click 'add to address book". it will add the addresses that are not already in the AB and ignore the others.
    From there, I should be able to add an entry into the address-book using the "Add to Addressbook" button.
    Sure, I could take every entry in Previous Recipients, and manually edit the address-book entries, but there are hundreds, and that would take me forever.

  • Can I distribute s/mime certificates to MDM managed users via Mavericks Server?

    We have a private CA and right now users have to share S/MIME certificates with others manually. Is is possible to embed these certs into each user in Address Book, or distribute them some other way using Mavericks Server?

    Couldn't fix the problem. Had to attach another external storage drive to each computer to use for backup, then erase and rename the TimeCapsule hard drive via Airport utility as well as the second hard drive in the MacMini Server via Disk Utility. I removed both the Time Capsule drive and the second internal hard drive from the "Settings" pane in the "Time Machine" section of Server.
    I still have no idea of what went wrong or if the problem will happen again. It may have been a corrupted file on the backup drives. It may have been Tech Tool Pro or Adode Creative Cloud updater, who knows. But for now, it is working as anticipated. The iMac clients and the MacMini Server are all backed up to the Time Capsule as well as the Mac Mini Server's second internal drive.
    I sure wish there were better documentation available for using Server to manage Time Machine backups!

Maybe you are looking for

  • Using a report layout in background mode

    Is is possible to apply a saved report layout like you apply to the alv grid to a csv file run in background mode?

  • Can I lock an Essbase database for a particular period?

    Hi Everyone, I was thinking about the ways in which this can be done. Any simple ways to achieve this? Please do post your suggestions. Periods would be defined by Years or a combination of Years and Periods. Thanks, Sayantan

  • Unable to Retore!  Error -48 Problem downloading the iPhone software

    I was having trouble with Safari (reseting all the time) and wanted to try restoring my iPhone from scratch. Each time I select "restore" I watch the download activate and when it's complete, I get the following error: There was a problem downloading

  • 5G and album artwork on AV reciever

    Guys I have 5G 80Gb iPod and a Yamaha 3900 AV receiver with iPod dock. When controlling the iPod in the Yamaha dock, its should display the album artwork on the connected plasma display - but it doesn't - it just says "loading" then nothing (plays mu

  • Enhanced Microphone seems to freeze the player

    On my asus eeepc ep121, when I try to run an app using the ehanced microphone -Microphone.getEnhancedMicrophone(); I find that the player freezes on the dialog box. The example works on my pc using a usb microphone webcam (lifecinema) Seems to defaul