Note that customer is running Windows 7(sp1) and Outlook 2013 sp1
Category: Outlook 2010
Outlook is unable to connect to the proxy server. (Error Code 0)
Scenario: Users using Microsoft Outlook receive a pop up saying that Outlook is unable to connect to the proxy server. The exact error is:
There is a problem with the proxy server’s security certificate. The name on this security certificate is invalid or does not match the name of the target site mail.domain.com.
Outlook is unable to connect to the proxy server. (Error Code 0)
Resolution: We noticed that the Certificate Principal Name had a invalid value in the Outlook Profile. In our case it showed a ‘-‘ in the field for ‘Only connect to proxy servers that have this principal name in their certificate:’. When we ran this command-let in Exchange Shell: Get-Outlook Provider, we saw there was a ‘-‘ for the Server and CertPrincipalName property. This was causing autodiscover to hand this value out to Outlook Clients. We resolved by resetting these values to $null:
Set-OutlookProvider EXPR -server $null -CertPrincipalName $null
Add a Calendar Meeting in Outlook through Powershell
The link at the bottom of this blog contains a good script that will allow you to create calendar meetings in Outlook through PowerShell. This was helpful when I had to buildup a calendar in size to simulate another users exchange calendar for testing. Below are the changes I made to the script so I could add attachments into newly created calendar appointments. I know-I know, we shouldn’t be adding attachments into the appointment directly, hence the reason for the simulation of the problems the user is experiencing that needs to be proven.
I added this parameter/variable in the list of parameters:
# Attachment Location, to hold value similart to: C:folderattachment.jpg
[string] $file
Boom. Now I can run the following command to create an appointment and add an attachment to build up the size of the calendar:
Add-CalendarMeeting -Subject “test recurring219” -Location “Steves Cube” -Body “Test” -MeetingStart “5/14/2014 18:00” -MeetingDuration 30 -file “C:UsersusernameDesktopfileabstract.jpg”
Link to the Original Script for download.
How to install the latest applicable updates for Microsoft Outlook
The article in the link below describes how to check to see if your Outlook is up to date and provides useful information about how to find your Outlook version and other important update information.
Re-Enabling PST functionality in your Outlook session.
Scenario: You cannot open or create a PST within your Outlook. The options are missing OR it does not allow to complete a PST operation. If you try to Integrate SharePoint with your Outlook, you may receive the following error:
Outlook cannot add the folder because creating a new Outlook data file (.pst) file isn’t allowed on this computer.
Solution: The registry has a DisablePST value that is set to not allow PST functionality. The data for this key is:
0 = Enables PST functionality
1 = Disable PST Functionality Completely
2 = Disables creating PST’s, but allows to open PST’s.
1. Open up the registry (regedit).
2. Click on Edit-Find and type in DisablePST. Perform a find. Keep hitting F3 to perform a ‘find next’ if this doesn’t take you directly to the key.
3. Delete the Key or Set it to the corresponding value. Deleting the key or giving it a 0 are one in the same.
Searching it take you to a location similar to: HKEY_LOCAL_MACHINESOFTWAREMicrosoftOffice<version>Outlook. This location may be different if using a 64 bit version of Outlook.
Process Meeting Requests Automatically from a Exchange user Mailbox
Scenario: If you have a normal Exchange user mailbox that is not a resource, you can configure Outlook to process the meeting request automatically. To do so, perform the following within Outlook:
Click on File–>Options
1. Navigate to Mail–>Tracking. Make sure there is a check mark in Automatically process meeting requests and responses to meeting requests and polls.
2. Navigate to Calendar–>Automatic accept or decline. From here you can select from the menu how you wish to automatically process meeting requests:
- Automatically accept meeting requests and remove canceled meetings
- Automatically decline meeting requests that conflict with an existing appointment or meeting
- Automatically decline recurring meeting requests
Troubleshooting:
Error: You need more memory or system resources. Please close some Windows and try again.
Problem when trying to open the mail app in the control panel or if opening outlook with many profiles.
To resolved rename the following key to something else.
Outlook 2010 and older:
Outlook 2013:
Disable Outlook Auto-Mapping with Mailboxes
If you wish to give a user full access to a mailbox, but do not want to have the mailbox auto-map into the users Outlook profile, assign the full access permission with with the -AutoMapping parameter.
Add-MailboxPermission mailboxname -user username -accessrights fullaccess -AutoMapping $false
Recommendations to avoid IOS Calendar Corruption with Exchange Mailboxes
Scenario: An entry on an IOS calendar shows incorrect times for an appointment, has disappeared, or is missing information, although the calendar entries in OWA and Outlook is correct. Specifically a single occurrence of a repeat appointment/meeting has one of the symptoms from above.
Recommendations from support: