Archive

Archive for July, 2013

One liners: Get the Top 5 Errors From An Event Log

July 30th, 2013 1 comment

Powershell_logo-137x137As part of an Active Directory Health Check (think “ADRAP”), I needed to document the top errors and warnings in several event logs, including the System, Application, DNS, Directory Service, FRS, and others. This list also needed to include the source of the errors. Since there were a bunch of domain controllers, I didn’t want to spend all day manually looking through event logs, filtering, etc. PowerShell to the rescue.

Get-EventLog is pretty self explanatory. We tell this command we want to look at the system event log, and we’re only interested in errors. We could look for other event types, too, such as Information, FailureAudit, SuccessAudit, and Warning. Get-EventLog can filter based on dates, usernames, etc.

We then take the output of that, and pipe it to Group-Object (or “Group” for short). We group based on source and eventID. This lumps all of the same events with the same eventID together as one object. This is important, because if there are errors with the same source, but different eventID, we want those listed separately.

Next, we use Sort-Object, or “sort”, to arrange the results into a usable list, with the highest numbers at the top. Since we only need the top 5 in the list for this exercise, Select-Object, or “select”, comes into play. This will return just the number of objects we specify. In this case, that’s 5. Since we pass the -first parameter to this cmdlet, we get the first 5 results that were piped from the previous command. Essentially, the highest 5 objects. And lastly, we display just the count and the name using Format-Table, or “ft”. Since we grouped the source and eventID together, the name will be the name of the source, and the corresponding eventID. The output looks like this:

Count Name
----- ----
  179 Microsoft-Windows-GroupPolicy, 1006
   30 Service Control Manager, 7031
   19 Microsoft-Windows-Hyper-V-Netvsc, 2
   15 Service Control Manager, 7034
   10 Microsoft-Windows-WindowsUpdateClient, 20

Exactly what I was after. The top 5 errors in the system event log, sorted by how many times the error appeared in the log, with the source name and eventID, sorted. The one-liner looks like this:

Get-EventLog -LogName system -EntryType error | Group-Object source,eventid | Sort-Object count -desc | Select-Object -first 5 | Format-Table count,name

We could also strip off the Format-Table stuff, and use Export-Csv to dump the results to a csv file.

Get-EventLog -LogName system -EntryType error | Group-Object source,eventid | Sort-Object count -desc | Select-Object -first 5 | Export-Csv c:\SystemErrors.csv -NoTypeInformation

Pretty straightforward, and fairly quick, as long as your event logs aren’t huge. We can even target remote computers by appending the -ComputerName parameter to the Get-EventLog cmdlet. For example:

Get-EventLog -LogName system -EntryType error -ComputerName mycomputer.contoso.local | Group-Object source,eventid | Sort-Object count -desc | Select-Object -first 5 | Export-Csv c:\SystemErrors.csv -NoTypeInformation

 

Categories: PowerShell Tags: ,

July 2013 Technical Rollup – Unified Communications

July 15th, 2013 No comments

News

Premier

  1. TechNet Blogs
    http://blogs.technet.com/b/mspfe/
    http://blogs.technet.com/b/mspremuk/

Antigen & Forefront

  1. http://blogs.technet.com/forefront
  2. http://blogs.technet.com/fssnerds

Exchange

  1. http://blogs.technet.com/b/exchange/
  2. Log Parser Studio 2.0 is now available
    http://blogs.technet.com/b/exchange/archive/2013/06/17/log-parser-studio-2-2-is-now-available.aspx
  3. Adventures in querying the EventHistory table
    http://blogs.technet.com/b/exchange/archive/2013/06/24/adventures-in-querying-the-eventhistory-table.aspx
  4. Managed Availability and Server Health
    http://blogs.technet.com/b/exchange/archive/2013/06/26/managed-availability-and-server-health.aspx
  5. http://blogs.technet.com/b/msukucc
  6. http://blogs.technet.com/b/msonline/

Hosted Messaging Collaboration

None

Lync, Office Communication Server & LiveMeeting

  1. TechNet Blogs
    http://blogs.technet.com/b/nexthop/
  2. Lync MVP Article Roundup: May 2013
    http://blogs.technet.com/b/nexthop/archive/2013/06/19/lync-mvp-article-roundup-may-2013.aspx
  3. Lync Supportability Matrix – Features Supported Across Devices and Services
    http://blogs.technet.com/b/nexthop/archive/2013/06/25/lync-supportability-matrix-features-supported-across-devices-and-services.aspx
  4. Lync Online Users Are Unable to Sign into Lync Mobile Clients Due to Lync Online SSL Certificate Updates
    http://blogs.technet.com/b/nexthop/archive/2013/06/28/lync-online-users-are-unable-to-sign-into-lync-mobile-clients-due-to-lync-online-ssl-certificate-updates.aspx
  5. Expanded Lync Server Support Options
    http://blogs.technet.com/b/nexthop/archive/2013/07/02/expanded-lync-support-options.aspx
  6. Lync Windows Store App: Better Than Ever
    http://blogs.technet.com/b/nexthop/archive/2013/07/02/lync-windows-store-app-better-than-ever.aspx
  7. Integrating Lync, SharePoint and Exchange for Value-Add Solutions
    http://blogs.technet.com/b/nexthop/archive/2013/07/03/integrating-lync-sharepoint-and-exchange-for-value-add-solutions.aspx
  8. Lync Online Media Port Changes Offer Better Bandwidth Management
    http://blogs.technet.com/b/nexthop/archive/2013/07/03/lync-online-media-port-changes-offer-better-bandwidth-management.aspx

Outlook

  1. http://blogs.office.com/b/microsoft-outlook/

Other

  1. http://blogs.technet.com/b/themasterblog/

Downloads

  1. Microsoft Lync Server 2013 Persistent Chat Resource Kit
    http://www.microsoft.com/download/details.aspx?id=36827
    The Microsoft Lync Server 2013 Persistent Chat Resource Kit tools are provided to help make routine tasks easier for IT administrators who deploy and manage Lync Server 2013 Persistent Chat.
    Release Date: 7/2/2013
  2. Microsoft Lync Server 2013, Planning Tool
    http://www.microsoft.com/download/details.aspx?id=36823
    The Microsoft Lync Server 2013, Planning Tool provides prescriptive guidance to get you started with planning your topology.
    Release Date: 7/1/2013
  3. Office Web Apps Technical Library in Compiled Help
    http://www.microsoft.com/download/details.aspx?id=30387
    Downloadable CHM version of Office Web Apps content on TechNet. Release
    Date: 7/1/2013
  4. Microsoft Lync Server 2013 Debugging Tools
    http://www.microsoft.com/download/details.aspx?id=35453
    Microsoft Lync Server 2013 Debugging Tools are provided to help IT Administrators with troubleshooting deployments of Lync Server 2013.
    Release Date: 7/1/2013
  5. UCMA 4.0 Runtime Cumulative Update KB 2835437
    http://www.microsoft.com/download/details.aspx?id=36826
    This download includes all available updates for UCMA 4.0 Runtime.
    Release Date: 7/1/2013
  6. Office 2013 Technical Library in Compiled Help
    http://www.microsoft.com/download/details.aspx?id=30389
    Downloadable CHM version of Office 2013 content on TechNet.
    Release Date: 7/1/2013
  7. Lync Server 2013 Capacity Calculator
    http://www.microsoft.com/download/details.aspx?id=36828
    A spreadsheet for calculating a user’s hardware requirements based on information about users and traffic.
    Release Date: 7/1/2013
  8. Lync Server 2013 Cumulative Update KB 2809243
    http://www.microsoft.com/download/details.aspx?id=36820
    This download includes all available updates for Lync Server 2013.
    Release Date: 7/1/2013
  9. Microsoft Lync 2013 SDK
    http://www.microsoft.com/download/details.aspx?id=36824
    Microsoft Lync 2013 SDK is the client-side API set that enables the integration and extension of Lync experiences.
    Release Date: 7/1/2013
  10. Identity and Authentication in the cloud: Office 2013 and Office 365 (Poster)
    http://www.microsoft.com/download/details.aspx?id=38193
    This poster illustrates and explains the new world of identity and authentication in Office 2013 and Office 365. Two scenarios illustrate how identities are provisioned and how those identities are authenticated completely in the Microsoft cloud or i…
    Release Date: 6/28/2013
  11. Microsoft IT Deploys and Manages Office 365 ProPlus
    http://www.microsoft.com/download/details.aspx?id=39378
    This white paper discusses the considerations and experiences of the Microsoft IT team when deploying and managing the new Office in an enterprise environment. Many of the techniques and best practices described in this paper can be employed by other…
    Release Date: 6/28/2013
  12. Microsoft IT Helps Users Embrace Office 365 ProPlus
    http://www.microsoft.com/download/details.aspx?id=39377
    Microsoft IT uses new and innovative channels to help Microsoft users prepare for and embrace the new Office, resulting in a successful deployment with increased user productivity and reduced support costs.
    Release Date: 6/28/2013
  13. IdFix DirSync Error Remediation Tool
    http://www.microsoft.com/download/details.aspx?id=36832
    IdFix is used to perform discovery and remediation of identity objects and their attributes in an on-premises Active Directory environment in preparation for migration to Office 365. IdFix is intended for the Active Directory administrators responsib…
    Release Date: 6/28/2013
  14. Microsoft Access 2013 Runtime
    http://www.microsoft.com/download/details.aspx?id=39358
    The Microsoft Access 2013 Runtime enables you to distribute Access 2013 applications to users who do not have the full version of Access 2013 installed on their computers.
    Release Date: 6/28/2013
  15. Microsoft IT Tests LOB Compatibility with Office 365 ProPlus
    http://www.microsoft.com/download/details.aspx?id=39376
    Microsoft IT gains additional efficiencies during the new Office deployment by incorporating changes into their mature application compatibility testing process.
    Release Date: 6/28/2013
  16. Work Smart: Go Paperless with OneNote 2013
    http://www.microsoft.com/download/details.aspx?id=39293
    OneNote 2013 can help support corporate initiatives to reduce employee dependence on paper and printed documents. This guide gives you a quick primer on OneNote 2013 so you too can join the paperless revolution!
    Release Date: 6/20/2013
  17. Microsoft Lync Room System (Beta Version) Deployment Guide
    http://www.microsoft.com/download/details.aspx?id=39274
    This document guides you through provisioning Microsoft Lync Room System (Beta version) in Lync Server and Exchange Server.
    Release Date: 6/17/2013
  18. Lync Features Comparison Chart
    http://www.microsoft.com/download/details.aspx?id=38816
    A detailed matrix of supported Lync features comparing Lync Server 2013 with Lync Hoster Pack and Lync Online (Office 365).
    Release Date: 6/14/2013

Events/Webcasts

None

New KBs

Antigen & Forefront

Microsoft Online – FOPE-FOSE-EHA

  1. Journaling is not sending e-mails
    http://support.microsoft.com/kb/2005489
  2. The Junk Email Reporting tool is not displayed after installation
    http://support.microsoft.com/kb/2005491
  3. You are logged out of the Archive when you click “export”
    http://support.microsoft.com/kb/2005889
  4. The Review message grid is empty and a “Messages not available at this moment” error message is displayed
    http://support.microsoft.com/kb/2005891
  5. Error message in the Online Services Directory Synchronization Tool in Forefront Online Protection for Exchange: “A non recoverable error has occurred: System.Security.AuthenticationException”
    http://support.microsoft.com/kb/2005947
  6. Outbound message delivery is delayed or rejected and you receive the error message in Forefront Online Protection for Exchange: “Greylisting in effect”
    http://support.microsoft.com/kb/2005951
  7. Administrator cannot set a multi-SMTP profile for a domain in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2006002
  8. Error message when you try to install the FOPE Directory Synchronization Tool: “ An error occurred while applying security settings”
    http://support.microsoft.com/kb/2006005
  9. Error message when you try to manually synchronize the DST 9.1: “”Failure: Cannot start a full sync now”
    http://support.microsoft.com/kb/2015169
  10. “Recipient address rejected: Access denied” nondelivery report when an external sender sends an email message to a Forefront Online Protection for Exchange stand-alone customer
    http://support.microsoft.com/kb/2015177
  11. Error message when you send an e-mail message: “Mailbox name not allowed or chunk too large”
    http://support.microsoft.com/kb/2015194
  12. How are my messages scanned for viruses?
    http://support.microsoft.com/kb/2023001
  13. Messages are not sent successfully in Exchange Server when you try to send email messages through Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2498885
  14. Cannot create an inbound decryption policy rule based on a recipient domain
    http://support.microsoft.com/kb/2508045
  15. A customer cannot disassociate a user from a virtual domain in an Exchange Hosted Archive environment
    http://support.microsoft.com/kb/2534587
  16. Error message when you try to access the FOPE Administration Center from the Office 365 portal: “Your username from federation is invalid or your account is disabled”
    http://support.microsoft.com/kb/2545089
  17. You receive scheduled reports that contain mail volume data to which you did not subscribe in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2547364
  18. You receive a non-delivery report (NDR) that says that the connection could not be established when you try to send mail through the FOPE service from the on-premises environment
    http://support.microsoft.com/kb/2578221
  19. The Supervisory Review Evidentiary report in Exchange Hosted Archive displays items that are not marked as reviewed
    http://support.microsoft.com/kb/2588497
  20. Users in a FOPE environment receive NDRs when they send mail to a recipient environment that uses the Backscatterer.org service
    http://support.microsoft.com/kb/2590562
  21. Domain users cannot receive email messages through Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2598485
  22. “Relay Access Denied” or “Hop Count Exceeded” non-delivery report (NDR) error message when users send mails to Office 365 users
    http://support.microsoft.com/kb/2603474
  23. The Junk E-mail Reporting Tool does not appear in Outlook
    http://support.microsoft.com/kb/2604282
  24. The Forefront Online Protection for Exchange Online Directory Synchronization Tool does not synchronize users
    http://support.microsoft.com/kb/2619983
  25. Outgoing email messages from a third-party filtering service are sent as clear text to Office 365 users
    http://support.microsoft.com/kb/2624525
  26. Outgoing message delivery is delayed or rejected in Forefront Online Protection for Exchange and you receive a “Greylisting in action, 451 4.7.1” nondelivery report
    http://support.microsoft.com/kb/2624610
  27. Email messages are deferred in Forefront Online Protection for Exchange (FOPE) when they are sent to a mail server that is deployed behind a Cisco PIX firewall
    http://support.microsoft.com/kb/2625239
  28. “550 4.4.7 QUEUE.Expired; message expired” NDR message when you send an email message through FOPE to an external domain
    http://support.microsoft.com/kb/2625264
  29. A test compliance review search in Exchange Hosted Archive returns a larger number of messages than a live compliance review search
    http://support.microsoft.com/kb/2628083
  30. The “Not junk” option is not available in the Spam Quarantine service in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2633240
  31. Email messages that do not have attachments are flagged as having attached .bin files in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2634032
  32. No domains are listed in the Filtering Domains field when you run the Forefront Online Protection for Exchange Directory Sync Tool
    http://support.microsoft.com/kb/2634048
  33. You receive spoofed email messages even though the SPF record spam filtering options are enabled in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2634659
  34. “A synchronization error occurred between your Active Directory environment and the Hosted Archive service” error message in Exchange Hosted Archive
    http://support.microsoft.com/kb/2635303
  35. “An unexpected error has occurred” error when you delete junk email messages from the spam quarantine mailbox in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2635327
  36. “The link has already been used” error when you try to read an encrypted message in Exchange Hosted Services
    http://support.microsoft.com/kb/2635442
  37. The sign-in page is not displayed, or a “Page not found” error occurs, after a new version of the Forefront Online Protection for Exchange Administration Center is released
    http://support.microsoft.com/kb/2636060
  38. A blank webpage appears when you click the answer-back URL in a message that is encrypted by Exchange Hosted Encryption in Windows Live Hotmail
    http://support.microsoft.com/kb/2636095
  39. How to add a disclaimer or footer to outgoing mail messages through Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2639679
  40. Domains do not appear in the Available Domains list in the FOPE Directory Sync Tool
    http://support.microsoft.com/kb/2640158
  41. You cannot read an email message that is encrypted by Exchange Hosted Encryption in a web browser other than Internet Explorer
    http://support.microsoft.com/kb/2642154
  42. The footer does not work for outgoing email messages through Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2642173
  43. Error when you run the FOPE Directory Sync Tool: “Unexpected error occurred during job execution”
    http://support.microsoft.com/kb/2642716
  44. How to create a policy for a group of users in a stand-alone Forefront Online Protection for Exchange environment
    http://support.microsoft.com/kb/2645012
  45. You cannot change the primary SMTP address for a user in Exchange Hosted Archive
    http://support.microsoft.com/kb/2649288
  46. Error message when users try to send email messages through Forefront Online Protection for Exchange: “Too much email from <IP address>”
    http://support.microsoft.com/kb/2652159
  47. The Forefront Online Protection for Exchange Directory Synchronization Tool does not transfer email addresses to Exchange Hosted Archive
    http://support.microsoft.com/kb/2652237
  48. How Exchange Hosted Archive handles blind carbon copy (Bcc) recipients
    http://support.microsoft.com/kb/2653006
  49. How to troubleshoot Higher Risk Delivery Pool email delivery issues in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2655834
  50. Messages take a long time to be displayed on the Review tab of Archive Viewer in Exchange Hosted Archive
    http://support.microsoft.com/kb/2664389
  51. “550 5.7.1 Service unavailable” nondelivery report (NDR) error code in Forefront Online Protection for Exchange
    http://support.microsoft.com/kb/2666743
  52. Legitimate email messages are marked as spam for a Forefront Online Protection for Exchange (FOPE) user
    http://support.microsoft.com/kb/2669119
  53. Some messages are rejected when you try to use Exchange Online servers as an SMTP relay for on-premises business applications and network hardware devices
    http://support.microsoft.com/kb/2673379
  54. How to perform a message trace in the Forefront Online Protection for Exchange (FOPE) Administration Center
    http://support.microsoft.com/kb/2690809
  55. You cannot remove duplicate domains in FOPE by using Windows PowerShell cmdlets
    http://support.microsoft.com/kb/2720407
  56. “Relay Access Denied” NDR when you try to send mail flow from an on-premises Exchange organization through Exchange Online Protection
    http://support.microsoft.com/kb/2827473

Exchange

ECS – Exchange – Cloud:

  1. Office 365 admin can’t access the Exchange Control Panel of an Exchange Online user
    http://support.microsoft.com/kb/2792924

ECS – Exchange – XADM:

  1. How can I recover items that I have “hard deleted” in Outlook?
    http://support.microsoft.com/kb/246153
  2. Users of Exchange Server 2013 or Exchange Online can’t open public folders or shared mailboxes on an Exchange 2010 or Exchange 2007 server
    http://support.microsoft.com/kb/2834139
  3. Error message when you try to activate a passive copy of an Exchange Server 2010 SP3 database: “File check failed”
    http://support.microsoft.com/kb/2837926
  4. “Could not complete the operation. One or more parameter values are not valid” error message when an organizer updates a recurring meeting
    http://support.microsoft.com/kb/2849083
  5. Some folders are not visible in Outlook Web App
    http://support.microsoft.com/kb/2849181
  6. Some cmdlets fail in PowerShell ISE after an upgrade to Exchange Server 2010 SP3
    http://support.microsoft.com/kb/2859999
  7. You cannot install the Exchange user monitor tool
    http://support.microsoft.com/kb/2860005
  8. The RecipientResolutionTimeoutInSeconds property is available to modify the time limit of a cross-forest AutoDiscover operation in Exchange Server 2007 and 2010
    http://support.microsoft.com/kb/928812

ECS – Exchange – XCON:

  1. Managed Availability messages are journaled in Exchange Server 2013
    http://support.microsoft.com/kb/2823959

Microsoft Online – BPOS-D:

  1. How to search for deleted items in an Exchange mailbox
    http://support.microsoft.com/kb/2786067

Microsoft Online – BPOS-S:

List of attributes that are synced to Windows Azure Active Directory and attributes that are written back to the on-premises Active Directory Domain Services
http://support.microsoft.com/kb/2256198

  1. Office Professional Plus 2010 enters Reduced Functionality Mode (RFM)
    http://support.microsoft.com/kb/2390460
  2. Outlook 2011 for Mac doesn’t automatically set up your email server settings for Exchange Online in Office 365 pre-upgrade
    http://support.microsoft.com/kb/2459968
  3. You receive a “One or more users need an assigned license in order to retain an Exchange Online mailbox or archive” message on the Users page of the Office 365 pre-upgrade portal
    http://support.microsoft.com/kb/2506570
  4. How to troubleshoot free/busy issues in a hybrid deployment of on-premises Exchange Server and Exchange Online in Office 365
    http://support.microsoft.com/kb/2555008
  5. “Set your Out of Office status after the connection to your Exchange account is restored” message when an Office 365 pre-upgrade user tries to set an Out of Office reply message in Entourage 2008 for Mac
    http://support.microsoft.com/kb/2578689
  6. How to troubleshoot issues that prevent a user from viewing other users’ free/busy information in Office Outlook 2007 and in Outlook 2010 in Office 365
    http://support.microsoft.com/kb/2581088
  7. Authentication error when you use the Set-MsolADFSContext cmdlet in the Windows Azure Active Directory Module for Windows PowerShell
    http://support.microsoft.com/kb/2587730
  8. Office 365 pre-upgrade users experience a delay when they receive mail from connected accounts in Outlook Web App
    http://support.microsoft.com/kb/2590447
  9. Error message when you run the Set-FederatedOrganizationIdentifier cmdlet to set up a hybrid deployment: “InvalidUri: Passed URI is not valid”
    http://support.microsoft.com/kb/2615183
  10. Spam email messages are not redirected to the Junk E-mail folder in Outlook or Outlook Web App in a Forefront Online Protection for Exchange environment
    http://support.microsoft.com/kb/2627433
  11. Individual Active Directory Domain Services objects don’t sync to Windows Azure AD in Office 365
    http://support.microsoft.com/kb/2643629
  12. How to update Autodiscover settings to troubleshoot Outlook issues that occur after the transition from BPOS-S to Office 365
    http://support.microsoft.com/kb/2644437
  13. Error when you run the Windows Azure Active Directory Sync Tool Configuration Wizard in Office 365: “Error 15: DirSync not activated”
    http://support.microsoft.com/kb/2654338
  14. Error message after you run the MOSDAL Support Toolkit: “There was no response from the federation server when the tool attempted to retrieve a Metadata Exchange (MEX) document”
    http://support.microsoft.com/kb/2707336
  15. Meeting requests that are sent to resource mailboxes are not always forwarded automatically to delegates in Outlook in Office 365 pre-upgrade
    http://support.microsoft.com/kb/2709216
  16. “Password Synchronization has not been activated for this company” error during Office 365 sign-in
    http://support.microsoft.com/kb/2848640
  17. Separate passwords required for the computer and Office 365 even though password synchronization is enabled
    http://support.microsoft.com/kb/2853316
  18. “We don’t recognize this user ID or password” error when a user tries to sign in to the Office 365 portal
    http://support.microsoft.com/kb/2853347
  19. “Blank” is displayed in the ERROR column for one or more objects after you run the IdFix tool
    http://support.microsoft.com/kb/2857349
  20. “Format” is displayed in the ERROR column for one or more objects after you run the IdFix tool
    http://support.microsoft.com/kb/2857351
  21. “Character” is displayed in the ERROR column for one or more objects after you run the IdFix tool
    http://support.microsoft.com/kb/2857352
  22. “Duplicate” is displayed in the ERROR column for two or more objects after you run the IdFix tool
    http://support.microsoft.com/kb/2857385
  23. How to use the Delegate Access feature in Outlook
    http://support.microsoft.com/kb/956980

Microsoft Online – O365 Exchange Online:

  1. How to set up an SMTP relay in Office 365
    http://support.microsoft.com/kb/2600912
  2. User can’t view free/busy information for a remote user in a hybrid deployment of on-premises Exchange Server and Exchange Online in Office 365
    http://support.microsoft.com/kb/2667844
  3. Office 365: Outlook and mobile device connectivity troubleshooting resources
    http://support.microsoft.com/kb/2757863
  4. You can’t enable archiving for a migrated mailbox in a hybrid deployment of Office 365 pre-upgrade and on-premises Exchange Server
    http://support.microsoft.com/kb/2788366
  5. “Federation certificate with the thumbprint cannot be found” error when you try to set up the federation trust to use the next certificate in Office 365
    http://support.microsoft.com/kb/2810692
  6. How to manage a mailbox in the on-premises environment when an Office 365 mailbox exists but an on-premises mail-enabled user doesn’t exist
    http://support.microsoft.com/kb/2813304
  7. How to troubleshoot data loss prevention policy tips in Exchange Online Protection in Office 365
    http://support.microsoft.com/kb/2823263
  8. “Length of the property is too long” error when you try to set up a hybrid deployment
    http://support.microsoft.com/kb/2860844
  9. Outlook folder names appear in a different language after the service upgrade to Office 365
    http://support.microsoft.com/kb/2861944

Lync, Office Communication Server & LiveMeeting

  1. ECS – OCS: Lync for iPhone displays Hebrew and Arabic words in reverse order in instant messages
    http://support.microsoft.com/kb/2713033

Microsoft Online – O365 Lync Online:

  1. You can’t connect to Lync Online, or certain features don’t work, because an on-premises firewall blocks the connection
    http://support.microsoft.com/kb/2409256
  2. You can’t sign in to Lync Online by using a domain that is configured for full redelegation
    http://support.microsoft.com/kb/2526143
  3. Lync contact list is empty or read-only after a user’s Exchange mailbox is disconnected
    http://support.microsoft.com/kb/2811654
  4. Error message when an administrator connects to Lync Online PowerShell for the first time
    http://support.microsoft.com/kb/2824005
  5. “Move-CsUser : HostedMigration fault” error message when you move users to Lync Online from an on-premises Microsoft Lync Server
    http://support.microsoft.com/kb/2829500
  6. Enterprise single sign-on users in Office 365 can’t sign in to Lync Online from inside their corporate network
    http://support.microsoft.com/kb/2839539
  7. The Lync Online contact list is empty or isn’t available for users who have Exchange Online mailboxes
    http://support.microsoft.com/kb/2859882
  8. You can’t upload a photo from Lync 2013 to Lync Online
    http://support.microsoft.com/kb/2860366
  9. “Can’t connect to the server” error message when a Lync Online user tries to sign in to Lync Mobile 2010 on Windows Phone 7
    http://support.microsoft.com/kb/2866501

Outlook

  1. Commercial – Office for Mac Commercial: “Outlook cannot open the file because it is not associated with the default identity” Spotlight search error message in Outlook 2011 for Mac
    http://support.microsoft.com/kb/2741583
  2. Commercial – Office for Mac Commercial: “Folder save operation failed due to invalid property values” error message in Outlook 2011 for Mac
    http://support.microsoft.com/kb/2742583

Office – Outlook:

  1. The Suggestions Pane and Add Rooms button features are missing in Outlook 2007
    http://support.microsoft.com/kb/2177236
  2. Can’t manage distribution group from Outlook with Exchange 2010 or Exchange 2013 mailbox
    http://support.microsoft.com/kb/2586832
  3. How to install the latest applicable updates for Microsoft Outlook (US English only)
    http://support.microsoft.com/kb/2625547
  4. [SDP 3][2c425a45-1620-42a4-ae4d-63b453394935] Microsoft Outlook Support Diagnostic
    http://support.microsoft.com/kb/2680810
  5. You experience issues when your Exhange account uses Cached Exchange Mode and you set a .pst file as the default delivery location in Outlook
    http://support.microsoft.com/kb/2701020
  6. Only a subset of your Exchange mailbox items are synchronized in Outlook 2013
    http://support.microsoft.com/kb/2733062
  7. [SDP 3][e2a5b961-5191-4cbf-b8e9-4d855aa51323] Outlook Product Stability Diagnostic
    http://support.microsoft.com/kb/2764035
  8. Email message body is blank in Outlook
    http://support.microsoft.com/kb/2854787
  9. [SDP 3][df1286ba-c6a6-40c4-9549-036e936c8109] Microsoft Outlook Support Diagnostic for Office 365
    http://support.microsoft.com/kb/2855572
  10. Outlook does not support connections to Exchange by using ActiveSync
    http://support.microsoft.com/kb/2859522
  11. Junk email message settings are not synchronized when you use Outlook 2013 to connect to an Outlook.com account
    http://support.microsoft.com/kb/2861826
  12. Images are missing using Outlook in online mode with Exchange 2013
    http://support.microsoft.com/kb/2862739
  13. How to enable global and advanced logging for Outlook 2010 and Outlook 2013
    http://support.microsoft.com/kb/2862843
  14. Outlook 2013 crashes if you use the New Office Document window
    http://support.microsoft.com/kb/2865777
  15. How to open a shared folder from an Outlook sharing invitation
    http://support.microsoft.com/kb/912265
  16. Google Apps Sync for Microsoft Outlook disables Outlook to search the Outlook data
    http://support.microsoft.com/kb/972814
  17. The UseLegacyFB registry value does not work as expected in Outlook 2010 and Outlook 2013
    http://support.microsoft.com/kb/982698