Change OutlookSecureTempFolder in Windows 2012/Outlook 2013

I am looking for a way to change the value of the OutlookSecureTempFolder registry key for all users on a RDS server, which supposedly can be found at HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Security.
In Windows 2012 I don't seem to be able to find this key. Does anyone know where it is at in Windows 2012? Or does anybody know another way to change it?

Hi,
Do you ever have an attachment opened in Outlook? If you haven't tried opening an attachment within Outlook, the
HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Security key won't be created. So, please try to open an attachment directly within Outlook, and then look for the key again.
If you still cannot see the key, we may also try creating the key directly to see the result. But before this, it's recommended to
back up your registry because serious problems might occur if you modify the registry incorrectly.
Note: Please make sure that the new folder for Outlook Security temp file exists before changing it in the registry.
Please let me know if this works.
Regards,
Steve Fan
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.

Similar Messages

  • User Property changes show up on the outlook 2013 UI correctly but it does not show up on the MailItem User Properties in Shared Account between PCs Environment

    Hello There,
    I have written an Outlook Add-In to add several User Properties to our incoming emails. This add-in will be installed in 100 computers in different states and our Exchange server is hosted in our datacenter in CA. 
    Everything works great but there is an odd thing happens and that is when one PC changes a UserProperty Value all the other PCs  show up that change on their outlook UIs but when I get the MailItem object from the same other PC is
    not showing the changes. But if I shutdown outlook on that PC and open it up again the changes will be showing up in the MailItem object. It seems to me that MailItem doesn't refresh but UI does.
    Does anyone know how I can refresh the MailItem after its UserProperties has been changed from another pc in a shared account environment.   
    These are my codes to save a property and show all properties:
    Public Sub SaveUserProperty(xName As String, xValue As String)
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    oUserProperty = oUserProperties.Find(xName)
    If oUserProperty IsNot Nothing Then
    oUserProperty.Value = xValue
    End If
    oMailItem.Save()
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "SaveProperty", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub
    Public Sub ShowUserProperties()
    Dim builder As StringBuilder = New StringBuilder()
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    For Each oUserProperty In oUserProperties
    builder.AppendFormat("{2}:{0}{3}{1}", vbTab, vbNewLine, oUserProperty.Name, oUserProperty.Value)
    Runtime.InteropServices.Marshal.ReleaseComObject(oUserProperty)
    Next
    If (builder.Length > 0) Then
    System.Windows.Forms.MessageBox.Show(builder.ToString(), "The UserProperties collection")
    End If
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "ShowUserProperties", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub

    Outlook will not see the latest changes downloaded from Exchange (or changed through MAPI bypassing the Outlook Object Model on the local machine) until the MailItem object is completely released and reopened. The explorer list shows the changes since it
    is fed off the underlying folder contents table, not the cached MailItem object.
    There is nothing you can unless you make sure the MailItem object is released and is never kept referenced fro any prolonged periods of time.
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • How do you change the default font in Outlook 2013?

    I am trying to set the default font in Outlook 2013 as per the customer's request and am having no success.
    First I create a NormalEmail.dotm file and added it to the Office Customization Tool, created an msp and added it to my package. After installing Office 2013 I check and the NormalEmail.dotm
    is on the machine in %appdata%\Microsoft\Templates folder waiting to be loaded. When launching Outlook 2013 on first run it renames my NormalEmail.dotm to NormalEmail15Pre.dotm. I created the file in Word 2013 so it's not a 2010 version and it (NormalEmail15Pre.dotm)
    open cleanly in Word 2013 (it does not open in compatibility mode).  If I close Outlook and rename NormalEmail15Pre.dotm back to NormalEmail.dotm Outlook opens and uses my template without any issue. This is not a solution as I have 1000's of deployments
    and can't do this manually. One other thing, I did have this same problem with the default font in Word 2013 but by implementing a registry setting (HKCU\Software\Microsoft\Office\15.0\Word\Options\MigrateNotmalOnFirstBoot = 1) it used my Normal.dotm
    template on first run, if such a setting exists for Outlook I can't find it.
    Also I did try to set the font through the mailsettings (HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\MailSettings) in the registry as we did with O2007 and O2010 but
    those do not load into Outlook when tweaked.
    http://blogs.technet.com/b/odsupport/archive/2009/04/24/how-to-deploy-specific-fonts-in-office-2007.aspx 
    Thank you for your help.

    Hi, I found out how you can set it.
    You need two registry keys to be set in order to keep the preloaded settings.(HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\MailSettings)
    These are:
    [HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\LanguageResources]
    "LangTuneUp"="OfficeCompleted"
    "OutlookChangeInstallLanguage"="Yes"
    both are String entries.

  • IPhone calendar sync w Windows 8 Outlook 2013

    I am using the Outlook 2013 calendar.  I want my iPhone to sync up with this Outlook 2013 client-(not cloud) based calendar, but during an iTunes sync, it seems to pick up the Win8 Calendar app instead.
    Any advice?  I'm at my wit's end.
    Thanks
    (and yes, I shoulda bought a Mac...)

    OK, my wonderful husband figured this out.   He tapped the iPhone calendar app, then the button called "calendars" in the upper lefthand corner, and got a screen that lists the calendars that should show. He clicked only on the "From My PC" calendar, and left the others unclicked.
    The root of my problem, IMHO, is that MS Win8 has a horrible calendar app that won't even sync with the MS Outlook Client calendar.  The Win8 cloud-based calendar app does a really sloppy job on timezones -  an event doesn't even have a visible "timezone" designation.  That's why I couldn't use it.
    On the other hand, what did expect buying Win8?

  • Change license to Windows 2012 R2 Essentials and Windows 2012 R2 Standard

    Hi,
    I'm working for a small company (10 users). We have 2 servers; 1 is a normal file server, domain controller etc.; the second is dedicated for running a financial application. We bought and installed new hardware but with so called 'Technet licenses'.
    Obviously we need to buy proper licenses. I have 2 questions :
    1. Am I correct in buying 1 Windows 2012 R2 Essentials license, 1 Windows 2012 R2 Standard license and 10 CALs ?
    2. Can I just install these licenses 'over' the existing 'Technet licenses' ?
    Any help will be greatly appreciated.
    Ronald Ruijtenberg

    I would purchase one Server Standard license, install it as a hypervisor on the server, then add to VMs.  First one is Server with the Essentials role, the second to run your financial application.  You can do this on one physical box and you
    only have to purchase one copy of Server Standard.
    Larry Struckmeyer[MVP] If your question is answered please mark the response as the answer so that others can benefit.

  • Windows 8 Outlook 2013 doesn't preview .pdf files

    What's the trick?

    Well Said !!!
    All pdf attachments can be previewed inside MS Outlook by installing same plug-in. By using Adobe Reader, all pdf attachments can be previewed separately (i.e. downloading). However the need is call to export outlook emails to pdf with attachments, you can go through an automated app. A standalone application that I used does not require MS Outlook and Adobe Acrobat any more to export Outlook emails to pdf with attachments.
    Give A Look:
    http://www.pcvita.com/convert-outlook-emails-to-pdf-with-attachments.html

  • Need Tool to change OST file into PST Outlook 2013?

    Hi,
    Please suggest me any other tool as my friend have need, I got also OST converter tool from link, works smoothly. Can I suggest him? Please check it...
    http://www.exportdatafromostfile.net

    Hello,
    Microsoft doesn't provide a tool to convert OST file into PST, but we can try export the data in OST file to PST file within Outlook. To do this, please follow:
    1. Open Outlook.
    2. Click File > Open & Export > Import/Export
    3. In the Import and Export Wizard, click Export to a file, and then click
    Next.
    4. Click Outlook Data File (.pst), and then click Next.
    5. Select the account you want to export by clicking the name or email address, such as
    Mailbox – Anne Weiler or [email protected] If you want to export everything in your account, including mail, calendar, contacts, tasks, and notes, ensure the
    Include subfolders box is checked.
    6. Click Next.
    7. Click Browse to select where to save the Outlook Data File (.pst) and to enter a file name. Click
    OK to continue.
    For detailed steps, you can refer to this article:
    https://support.office.com/en-ca/article/Export-or-back-up-messages-calendar-tasks-and-contacts-d791fe88-5c67-44c5-a3f6-a484508082a1?ui=en-US&rs=en-CA&ad=CA
    Regards,
    Steve Fan
    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.

  • Outlook 2013 Navigation Pane Spacing in Windows 8.1

    I have two laptops sitting side by side. One of them has a windows 8.1 installation with Office 2013 and the other has a windows 8 with installation of Office 2013.
    There is one huge difference in Outlook that is a large source of frustration - the navigation pane.
    In Windows 8 / Outlook 2013, I can see about 30 folders, each with a very small space in between each other. 
    In Windows 8.1, I can see about 15. Half the amount, and all in part due to an enormous space between each folder.
    I understand the need to go "touch friendly" but, in doing so, don't limit all the other users - instead, give them a customization option to opt back and forth between touch friendly and workstation friendly. 

    Hi,
    The number of the folders may be also related to the screen resolution of your computer.
    In addition, please check if the Outlook 2013 on WIndows 8.1 is working with Touch Mode enabled. To check this, expand the Quick Access Toolbar menu and select Touch Mode. Now,
    the Touch Mode button is added to the QAT which you can use to toggle Touch Mode off and on. See:
    If you are using Touch Mode, try to switch to Mouse Mode to check the result.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Exchange 2007 / Outlook 2013 "Your Automatic Reply Settings Cannot Be Displayed Because The Server Is Unavailable"

    One of our users is having problems setting replies from Outlook on his local PC.  This is an SBS 2008 Server with Exchange 2007.  The client PC is running Windows 8 with Outlook 2013.  This issue doesn't seem to affect other users but this
    is the only client with Outlook 2013.
    When trying to set an automatic reply from within Outlook 2013 we get the "Your automatic reply settings cannot be displayed because the server is unavailable".  Outlook seems to be connecting and working fine so connection to the server does
    exist.
    Trying this same operation from owa works without issue.  Please let me know what we need to do to find a solution.
    Thanks so much!

    Problem: 
    IMAP downloads inbox don't work after November patches.
    If you install a fresh OS and O2K13 unpatched ,the IMAP works fine.
    Fully patched O2K10 works fine too.
    It worked for my customer until November patch Tuesday broke the IMAP sync.
    Consultant opened case. 
    Response from Microsoft:
            This is with regards to the issue faced by you due to regression         caused by November security update. This is further to inform         you
    that fix is out and below is the download links for 32 bit         and 64 bit of the office suites. You need to apply all 3 hotfix.         The crash issue and IMAP issue would get resolved
    immediately         while the issue related to Free / Busy and OOF not getting set         would take 24-36 hours to start working once the patch is        
    applied.
    Below
            are the KB articles:
    Description
            of the Outlook 2013 hotfix package (Outlook-x-none.msp):         December 10, 2013:
    http://support.microsoft.com/kb/2825652        
    Description
            of the Word 2013 hotfix package (Word-x-none.msp): December 10,         2013:
    http://support.microsoft.com/kb/2837674        
    Description
            of the Office 2013 hotfix package (       2013:
    http://support.microsoft.com/kb/2849994        
        Description of the Office 2013 hotfix package (   December 10, 2013:
        http://support.microsoft.com/kb/2849994
    Issues that this hotfix package fixes
    Consider the following scenario:        
    You have a SharePoint Server environment that has complex             workflows.         
    You implement the ReceiveTimeOut registry entry to             increase the global timeout to 90 seconds.         
    You click Open this task             button to open a workflow task in Outlook 2013.       
            In this scenario, when you click any approval option from the         popup dialog box, you receive the following error message:        
    This task could not be updated at this               time.
    When you reply or forward an email message by using inline         replies, you cannot use the Close and Delete method of Outlook         Visual Basic for Application. Additionally, you
    receive the         following error message:        
    Run-time error '-2147467259               (80004005)': This method can't be used with an inline               response mail
    item.
    Consider the following scenario:        
    Assume that User A is located on an on-premises Exchange             Server, and User B is located on Cloud.         
    Both the on-premises Exchange Server and the Cloud enables             the Federation Trust.         
    User A share his own calendar to User B with Full Details             permission, and send the sharing invitation to User B.         
    User B opens the sharing invitation from User A, click             Open this Calendar, Outlook browses to the Calendar module             and opens
    the shared calendar.       
            In this scenario, the shared calendar does not show any content.     
    Consider the following scenario:        
    You install Outlook 2013 on Windows Server 2008 R2 or             Windows Server 2012 with Terminal Server Role installed.         
    You implement the Use Cached Exchange Mode for new and             Existing Outlook Profiles Group Policy settings and enable             it.       
            In this scenario, when you open the           Outlook Account Settings window, and double-click the         Exchange
    account, the Use Cached           Exchange Mode check box is not checked in the popup         dialog box.     
    Consider the following scenario:        
    You have an Exchange Server that has Public Folders.         
    You create the Outlook Security               Settings folder under
    All               Public Folders.         
    You publish the AdminSecurityMode registry entry and set             to a value of 1.          
    You configure Outlook 2013 to use cached mode.       
            In this scenario, when Outlook 2013 connects to Exchange Server,         Outlook crashes.   
        Description of the Word 2013 hotfix package (Word-x-none.msp):     December 10, 2013:
        http://support.microsoft.com/kb/2837674
        Assume that you open a meeting request in a separate window in     Outlook 2013. When you click
    Accept and     then click
    Send Reply Now,     Outlook crashes.
        Description of the Outlook 2013 hotfix package (Outlook-x-none.msp):     December 10, 2013:
        http://support.microsoft.com/kb/2825652
    Issues that this hotfix package fixes
    Assume that you have a recurring appointment that does not         have a subject. You make some changes to one instance of the         appointment and then save the instance. When you
    try to open or         delete the instance, Outlook may crash. Additionally, when you         drag-and-drop one instance of the appointment to a different        
    time in the calendar, Outlook may crash.     
    When you reply or forward an email message by using inline         replies, you cannot use the Close and Delete method of Outlook         Visual Basic for Application. Additionally, you
    receive the         following error message:        
    Run-time error '-2147467259               (80004005)': This method can't be used with an inline               response mail
    item.
    Consider the following scenario:        
    Assume that User A has a mailbox that is located on an             on-premises Exchange Server, and User B has a mailbox that             is located
    on Cloud.         
    Both the on-premises Exchange Server and the Cloud enable             the federation trust.         
    User A share his own calendar to User B with Full Details             permission, and send the sharing invitation to User B.         
    User B opens the sharing invitation from User A, click             Open this Calendar, Outlook browses to the Calendar module             and opens
    the shared calendar.       
            In this scenario, the shared calendar does not show any content.     
    Consider the following scenario:        
    You install Outlook 2013 on Windows Server 2008 R2 or             Windows Server 2012 with Terminal Server Role installed.         
    You implement the Use Cached               Exchange Mode for new and Existing Outlook Profiles             Group Policy
    settings and enable it.       
            In this scenario, when you open the           Outlook Account Settings window, and double-click the         Exchange
    account, the Use Cached           Exchange Mode check box is not checked in the popup         dialog box.     
    Consider the following scenario:        
    You have an Exchange Server that has Public Folders.         
    You create the Outlook Security               Settings folder under
    All               Public Folders.         
    You publish the AdminSecurityMode            
    registry entry and set to a value of 1.          
    You configure Outlook 2013 to use cached mode.       
            In this scenario, when Outlook 2013 connects to Exchange Server,         Outlook crashes.     
    Consider the following scenario:        
    You have two Active Directory forests (Forest A and Forest             B).         
    User A and User B have their mailboxes that are located on             Forest A.         
    User A share his own calendar with User B with Full             Details permission.         
    User B add the shared calendar and let it sync.         
    You move User B’s mailbox to Forest B.       
            In this scenario, the shared data in the shared calendar is         removed every second time that User A restarts Outlook. And it         is re-synced
    when User A browses to the Calendar module.
    Unfortunately TechNet isn't coming back, sorry folks :-(
    The 3 patches above immediately fixed the issue for me!
    Thanks so much!

  • Outlook 2013 client doesn't sync new mails but syncs after restarting outlook

    Hi Experts,
    Here are the HW & SW.
    DC1, ADC Windows 2012
    Exchange 2013 MBX1 & MBX2 on Win2012r2
    Exchange 2013 CAS1 & CAS2 on Win2012r2
    Network : EXCHANGE ON LAN and Clients using MPLS link to connect Exchange CAS (10 mbps) 100 users.
    Strange issue, only for few users like 4-5 outlook, when user opens outlook gets authenticated and outlook remain cached mode. But it doesn't gets the new mails it still shows online. But the same users they get the mails on their mobile device using Active
    Sync promptly without any delay and new mails shows on the OWA too. When the user restarts his outlook starts receiving new emails. 
    Checked the following : 
    No Application error on event logs
    All users are homed on same database on same server.
    No throttling policy been configured and enabled except default one.
    Webmail works fine and well
    Restarting outlook syncs well
    No network changes
    Both internal and external mails are affected for the few users who has issues
    Regards, Ganesh, MCTS, MCP, ITILV2 This posting is provided with no warranties and confers no rights. Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread.

    Hi,
    Since there is no sync synchronization issue on mobile device and OWA, it is highly possible of outlook client issue.
    Make sure outlook client is the latest version.
    Please disable the security AVG/Firewall, especially the mail scanner module to check whether this issue persists.
    Run Outlook in Safe Mode to determine if it's 3rd-party add-ins related:
    Press Win + R and type “outlook.exe /safe” in the blank box, then press Enter.
    Please run scanost.exe to fix the .pst file to test the result:
    http://support.microsoft.com/kb/272227#appliesto
    Please try to recreate profile to check this issue.
    If this issue persists, please let me know.
    Best Regards.

  • Outlook 2013 Mail Option buttons not working

    Microsoft Office Outlook 2013 issue where in Outlook File>Options>Mail the "Spelling and Autocorrect", "Signatures", and "Stationary and Fonts" buttons will not respond. I have searched and searched but I cannot make these
    buttons work.
    Solutions I have tried with no results:
    Running Outlook in Safe Mode
    Disabling all Com-Addins
    Reinstalled Outlook
    Ran Office Repair
    Re-created Mail Profiles
    Disabled HIPS protection
    Changed Registry values in:
        HKCU>Software>Policies>Microsoft>Office>15.0>Common>MailSettings
        HKCU>Software>Microsoft>Office>15.0>Common>MailSettings
        HKLM>Software>Classes>Wow6432Node>CLSID>{0006F03A-0000-0000-C000-000000000046}\LocalServer32
            (Default) Key and LocalServer32 Key
    Tried to get to signature through MS Word
    I am unable to navigate to the location of the signature block and I am able to place signatures there through adding .rtf, .htm, and .txt file. I am able to add them into the email, but when I choose "signatures" no window opens to add/edit current
    signatures.
    Please Help! I cannot think of anything else to try!
    -Chris

    Hi Chris,
    Are these three buttons grayed out?
    What version of Windows and Outlook 2013 are you using? The registry value we need to modify is different according to the version of Windows and Outlook.
    32-bit version of Windows
           HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0006F03A-0000-0000-C000-000000000046}\LocalServer32
    32-bit version of Office on a 64-bit version of Windows
           HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Wow6432Node\CLSID\{0006F03A-0000-0000-C000-000000000046}\LocalServer32      
    64-bit version of Office
           HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0006F03A-0000-0000-C000-000000000046}\LocalServer32
    Please make sure you have modified the correct registry value.
    In addition, please also make sure you have entered the correct path to Outlook.exe for the registry value. It's recommended to navigate to the path in Explorer first and then copy and paste the path to the data filed of the registry values.
    Regards,
    Steve Fan
    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.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Outlook 2013 entries not included in search results

    I have Windows 7 Ultimate SP1 32 bit. When I use Windows 7 "Search programs and file" via the Start button, the Outlook entries are included in the search results. Or rather they were until I recently updated to Outlook 2013. Now the Outlook entries
    are missing.
    I have checked that Outlook is included in the scope of the Search indexer. I have rebuilt the index from scratch. I have also explicitly added the Outlook PST file in the scope of the index. None of this helps.
    The indexed entries are successfully retrieved from within Outlook itself.
    Any ideas out there?
    Thanks, Paul

    Hi,
    It is caused by the deprecated features and components in Outlook 2013:
    Outlook search via the Windows Shell
    Outlook 2013 will no longer surface search results for mail and calendar items in Windows Explorer (or via the start menu).  Users can still utilize all of Outlook's search functionality from within the app itself. 
    http://blogs.office.com/b/microsoft-outlook/archive/2012/12/19/outlook-2013-deprecated-features-and-components.aspx
    Best regards,
    Rex Zhang
    TechNet Community Support

  • Unable to send email POP3 email from Outlook 2013 unless signed on as local admin

    Windows 7 Outlook 2013
    I recently upgraded from Office 2010 to 2013.  For several weeks everything ran smoothly but a few days ago I noticed that my Verizon POP3 account was unable to send mail - items just sit in outbox.  I have deleted/added the account and the profile
    multiple times, this will solve the problem for a few days but then it returns again.  I discovered that if I run Outlook as an administrator the mail will send without a problem.  I have checked permissions on the pst file and do not see any issues. 
    Sometimes but not always I receive a message on the POP3 send that there was no network connection check mode. The send test message in the account set up never has a problem - it's only the periodic Outlook sending and receiving when the problem occurs. 
    Any ideas?
    Thanks.
    enagy

    Hi,
    Since the problem could be be solved for a few days by deleting/re-adding the profile and the account, the problem may be related to the .pst file. When the problem comes back, run Scanpst.exe to repair the. pst file, will the problem be fixed again?
    Learn how to use Scanpst.exe:http://support.microsoft.com/kb/272227/en-us
    We can also assume there are other programs that are interacting with the .pst file, reboot and disable the possible programs to test if this makes a difference.
    If you're disconnected, you'll also need to check the network cable, try restarting your computer, or contact your Internet Service Provider or your system administrator. This implies the issue may be related to the anti-virus program or the firewall settings,
    which may be scanning the outgoing emails from Outlook. We can disable them temporarily to send the emails again, check if this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • On Windows 2012 Terminal Server Outlook fails to connect to Exchange 2013

    I have a new install of Windows 2012.  I have two physical servers.  One is a W2012 std Domain Controller ("DC").  The Second is configured as W2012 HyperV  ("HV").  Under HV I have
    two VMs.  One VM is W2012/Exchange 2013 ("ExchVM) and the other is W2012/Terminal Server ("VMTS").  All systems are behind a firewall appliance.  Exchange is working via Outlook and OWA internally and externally.  The self
    created SSL must be installed manually on external machines since it comes up as an untrusted certificate.  Once installed remote outlook works and OWA works.  I have configured the terminal server and I am able
    to login remotely as various users under my "TS group".  The problem is when ever I attempt to open Outlook for the 1st time, it fails to connect to the exchange server.   (Open Outlook 2013, click next
    on the splash screen, "Yes" Add an Email Account splash screen, click next, Auto Account screen populates NAME and Email Address correctly, click next, Searching for mail server settings..., check on establishing network connection, check on searching
    for alias@ domain, then fails the logging on to the mail server)  The error reads:  "Outlook cannot log on.  Verify you are connected to the network and are using the proper server and mailbox name.  The
    connection to Microsoft Exchange is unavailable.  Outlook must be online or connected to complete this action."   I am connected in RDS from offsite, and from the RD session I can access shared folders on ExchVM and DC.  I have
    tried have verified the server Exchange server name is correct via "Get=ClientAccessServer" command.  I have also tried to use the guid via "Get-Mailbox
    ALIAS | fl name, exchangeguid.  Keep in mind all desktop users on the network are connecting to Outlook without issue.
    I would appreciate any thoughts on solving this issue.

    Hi,
    According to your workaround, it seems that the Outlook Anywhere configuration in Outlook client is not correct when using the Autodiscover service.
    Once you connected to Exchange server by manually settings, please run Test E-mail AutoConfiguration tool in external Outlook client to check the autodiscover service:
    open Outlook - press CTRL key - right click on the Outlook icon from right bottom corner taskbar - Test Email AutoConfiguration. Put your email address - uncheck use guessmart and secure guessmart authentication - click Test to check your Autodiscover service.
    Please check the Log tab and confirm whether the Autodiscover service is connected successfully. Also confirm if the connection issue happens to all external users when they open Outlook for the 1st time. In Exchange server, please make sure
    autodiscover.domain.com has been included in your Exchange certificate which is assigned with IIS service.
    Regards,
    Winnie Liang
    TechNet Community Support

  • AD RMS 2012 Templates/Permissions [Option] is not visible at Outlook 2013 in Nokia Windows 8 Mobile Device

    I have AD RMS 2012 Server, its working fine by applying restricted Templates/Permissions on OWA, Outlook & other MS Office Tools (Word Excel, PowerPoint). But the AD RMS Templates/Permissions [Option] is not visible at Outlook 2013 in Nokia Windows
    8 Mobile Device.
    Actually I would like to protect email with RMS templates (defined by me on AD RMS 2012 Server) but the [Permission] tab is not visible at Outlook 2013 in Nokia Windows 8 Mobile Device.
    But I can do same with Android OS in Samsung Galaxy Mobile Device & I can see [Permission] tab as well to protect an email messages.
    Any idea??
    Regards,
    M.Daud Soomro

    Currently, you can't use WP 8 to protect docs/emails with ADRMS templates. YOu can however use transport rules on Exchange server side to configure automatic ADRMS protection.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Damir

Maybe you are looking for

  • Authorization Issue in Opening BPC client 7.0

    Hi All, I am very new to this BPC and configuration. Here is my situation. We have a BPC server and client in the same host connected with BW system. All configuration were made and was up and running fine. since dynamic ip was allocated to the syste

  • Native resolution changed - now missing 1440x900

    Somehow my Macbook Pro 15-inch mid 2012 (not Retina) computer went from a 1440x900 resolution, which I liked, to 1680x1050! This is now the native resolution and 1440x900 is NOT one of the few resolution options I have under Scaled. I tried resetting

  • My recent poor experience with EE, I know will get deleted.

    Ok so for nearly 2 years I have been an EE pay monthly customer. Since January I have been stuck with a 5 pound global minute add on. (mainly because their site and app keeps telling me there's a problem, and I haven't called them to cancel it, I hav

  • Adding aperture versions to iphoto

    Since Aperture 2 no longer works with Yosemite upgrade. Is it possible to take the edited photos (versions) from Aperture and bring them into iPhoto?

  • Avg_row_len always 1 byte extra

    Hi Anyone can help to explain the different in vsize and avg_row_len in the following example? Thanks create table t (n1 varchar2(10)); INSERT INTO t values('aaaaaaaaaa') SELECT vsize(n1) FROM t;  -- 10 bytes SELECT avg_row_len FROM user_tables WHERE