New Microsoft Outlook 365 (Version 1.2024.725.400) for Windows 11: Problems Adding Department Resource Accounts
Microsoft Outlook 365 is a popular email client used by millions of users worldwide. With the release of Version 1.2024.725.400 for Windows 11, users have reported issues when trying to add department resource accounts. This article will cover the key concepts related to this issue and provide a detailed context of the topic.
What are Department Resource Accounts?
Department resource accounts are email accounts that are shared by a group of people within an organization. These accounts are typically used for scheduling resources such as conference rooms, equipment, or vehicles. In Microsoft Outlook, department resource accounts can be added as additional mailboxes, allowing users to manage the resources directly from their email client.
Issues Adding Department Resource Accounts in Outlook 365 for Windows 11
Users have reported issues when trying to add department resource accounts in the new Microsoft Outlook 365 for Windows 11. The issue occurs during the configuration process, where users are prompted to enter the email address and password of the resource account. After entering the required information, users receive an error message stating that the account cannot be added.
Causes of the Issue
The root cause of the issue is still under investigation by Microsoft. However, preliminary findings suggest that the issue may be related to the authentication process used by the new Outlook 365 client for Windows 11. Some users have reported that the issue can be resolved by using a different authentication method, such as modern authentication or basic authentication.
Workarounds
While Microsoft is working on a permanent solution for the issue, there are a few workarounds that users can try. These workarounds include:
- Using a different authentication method, such as modern authentication or basic authentication.
- Adding the department resource account as a delegate instead of an additional mailbox.
- Using the Microsoft Outlook web app instead of the desktop client.
The new Microsoft Outlook 365 for Windows 11 has introduced a frustrating issue for users who need to add department resource accounts. While Microsoft is working on a permanent solution, users can try the workarounds mentioned in this article. It is recommended to keep an eye on the Microsoft Outlook forums for updates on the issue.
References
- Outlook for Windows: Can't add a shared mailbox or resource calendar after updating to version 2104 (build 13929.20000) or later
- Can't add resource mailboxes after update to 16.0.14326.20298
- Can't add shared mailbox or resource mailbox
// Sample code block
function addDepartmentResourceAccount(email, password) {
try {
// Attempt to add the department resource account
// using modern authentication
Office.context.mailbox.addDelegates([email], {
auth: {
method: "modern",
user: {
displayName: "User Name",
emailAddress: "[email protected]"
}
}
});
} catch (error) {
// If modern authentication fails,
// attempt to add the account using basic authentication
Office.context.mailbox.addDelegates([email], {
auth: {
method: "basic",
user: {
displayName: "User Name",
emailAddress: "[email protected]",
password: password
}
}
});
}
}
The above code block demonstrates how to add a department resource account using modern authentication, and if that fails, using basic authentication. Note that this is just an example, and the actual implementation may vary depending on the specific requirements of your organization.