Posted on

outlook desktop client : unable to manage groups

For some days now, anyone who has an Exchange online mailbox and uses Outlook for e-mail has not been able to manage groups.
After doing all the recommended tests on the internet, we opened a support ticket to Microsoft who replied: “This is a global system crash which you could monitor from the admin interface”

We report the detail of the Microsoft report.

April 19, 2023 7:58 PM

Title: Some users may be unable to view or access group calendars and email messages in the Outlook desktop client User impact: Users may be unable to view or access Microsoft 365 group calendars and email messages in the Outlook desktop client.

More info: Affected users are part of a Microsoft 365 group and are on versions 16.0.16222.10000 or higher, including the latest February release channel. Some affected users may also notice that impact self-resolves after some time, although impact may also reoccur at a later time. These users may also be unable to perform one or more of the following actions in the Outlook desktop client:

  • Add or access the group mailbox
  • Add or access the group calendar
  • Add, remove, or edit group members
  • Changes to mail items, such as marking as read, archiving, or moving email to other folders.

Until a fix is deployed for this issue, impacted users with access to Outlook on the web can use that connection method to access the impacted group features.

Alternatively, impacted users can revert to Outlook desktop client build 16130.20332. The steps are outlined in the following article: https://support.microsoft.com/en-us/topic/how-to-revert-to-an-earlier-version-of-office-2bd5c457-a917-d57e-35a1-f709e3dda841

Current status: We’ve validated the fix and are preparing deployment to the impacted environments. We anticipate the deployment will start by our next communications update, at which we’ll be able to provide an estimated deployment timeline if available. While we’re preparing the deployment of the new build, we recommend impacted users revert to Outlook desktop client build 16130.20332, as mentioned above for immediate remediation.

Scope of impact: Impact is limited to users on versions 16.0.16222.10000 or higher, and are attempting to access or perform various Microsoft 365 group related actions in the Outlook desktop client.

Start time: Sunday, March 19, 2023, 1:00 AM (12:00 AM UTC)

Root cause: A recent service update is incorrectly triggering an indexer to delete specific values within the Outlook desktop client for some users, resulting in impact.

April 25, 2023 8:16 PM

Estimated time to resolve: We anticipate that the deployment of the fix will completely saturate the affected environments and fully remediate impact on Tuesday, May 2, 2023.

Next update by: Tuesday, May 2, 2023, 9:00 PM (7:00 PM UTC)

 

Aprile 26. Microsoft’s workaround

Revert to the Outlook Desktop build prior to the issue occurring, build 16130.20332.  You can use ODT steps, How to revert to an earlier version of Office or by following the steps below.

To revert to the prior build, do the following:

  1. Open a Command Prompt (Run as Administrator).
  2. Type/paste the following commands and press Enter after each:
    cd %programfiles%\Common Files\Microsoft Shared\ClickToRun
    officec2rclient.exe /update user updatetoversion=16.0.16130.20332
  3. In the backstage, disable Updates (File, Office Account, Update Options, Disable Updates).
  4. Set a reminder on your calendar for May 9, 2023, to remember to re-enable updates. The fix should be out sooner, but May 9 is Patch Tuesday, and the fix will be in this update.
Posted on

printing error – windows blue screen – lock and restart computer

We write to let you know that a March 2021 Windows update is creating problems on your computer when printing a document.

When printing, the computer freezes with an error and restarts.

We have personally experienced the problem on Kyocera printers.

Other sites report the problem with Richo, Olivetti, Zebra printers.

In general, these are all printers that use the win32kfull.sys file

Solution

You simply need to uninstall the KB5000802 update

Update

On March 15th Microsoft released an update that fixes the problem: KB5001567

Posted on

Apache on Windows – AH00072: make_sock: could not bind to address [::]:80

Scenario

On your Windows computer, Apache does not start. Go to the event viewer and find the event with error:

AH00072: make_sock: could not bind to address [::]: 80

Problem

The problem is that an application is using the same port 80 as your site on Apache. How to find out what this application is?

Open the command prompt (cmd). Type

netstat -ano

You see all open ports on your computer used by applications. Find the line that (in this case) is about port 80. The PID column shows the number of the program that is using your port.

Open task manager, in the tab “Details” through the PID column you will find the program that is using your port.

Solution

You have 2 possibilities: either stop the program or, if you need the program, change the port used by this program, if possible, or the one used by Apache.

If the program you found through the PID is System, it means that Windows itself is blocking the door. Open the services and you need to stop the “World Wide Web Publishing Service” service. You will also have to set the start in manual, if instead it were in Automatic, because otherwise the next day the problem would reoccur.

Posted on

CS1617: Invalid option ‘6’ for /langversion; must be ISO-1, ISO-2, 3, 4, 5 or Default

Compiler Error CS1617

Invalid option ‘option’ for /langversion. Use ‘/langversion:?’ to list supported values.

For example

Invalid option ‘6’ for /langversion; must be ISO-1, ISO-2, 3, 4, 5 or Default

Solution

Right click on your project and select “Properties” from menu.

Select Build menu and, in the bottom, click on button “Advanced”.

In the next form you don’t have any voice for the field “Language Version”

Select “default”

Done