Skip to content

Commit 4cb5ff9

Browse files
authored
Merge pull request #8383 from MicrosoftDocs/main
Auto push to live 2025-03-06 02:00:02
2 parents 773bc29 + 2bacc0b commit 4cb5ff9

12 files changed

Lines changed: 410 additions & 215 deletions

.openpublishing.redirection.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12879,6 +12879,10 @@
1287912879
{
1288012880
"source_path": "support/power-platform/dataverse/d365-app-outlook/error-when-installing-crm-2016-outlook.md",
1288112881
"redirect_url": "/previous-versions/troubleshoot/dynamics/crm/error-when-installing-crm-2016-outlook"
12882-
}
12882+
},
12883+
{
12884+
"source_path": "support/power-platform/dataverse/d365-app-outlook/current-user-role-not-have-required-permissions.md",
12885+
"redirect_url": "/troubleshoot/power-platform/dataverse/d365-app-outlook/privilege-error-occurs-when-using-dynamics-365-app-for-outlook"
12886+
}
1288312887
]
1288412888
}

support/azure/azure-storage/blobs/alerts/storage-explorer-troubleshooting.md

Lines changed: 231 additions & 90 deletions
Large diffs are not rendered by default.

support/entra/entra-id/user-prov-sync/services-sync-not-start.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Microsoft Entra Connect services don't start
33
description: Describes an issue that prevents Microsoft Entra Connect services from starting. Provides a resolution.
4-
ms.date: 02/28/2024
5-
ms.reviewer: riantu, nualex, reviei, v-leedennis
4+
ms.date: 03/06/2025
5+
ms.reviewer: riantu, nualex, reviei, v-leedennis, v-weizhu
66
ms.service: entra-id
77
ms.custom: sap:Microsoft Entra Connect Sync
88
---
@@ -52,14 +52,14 @@ Make group policy changes if necessary so that the ADSync service account can lo
5252

5353
1. If you made any changes to the local group policy or domain group policy, restart the computer to apply the changes.
5454

55-
## Solution 2: Troubleshoot error messages in directory synchronization logging
55+
## Solution 2: Troubleshoot error messages using Event Viewer
5656

57-
You can also try to find and fix the problem by scanning the application and system events in the directory synchronization logs. All directory synchronization logging is viewable in Event Viewer. For details, see [Troubleshoot other error messages](installation-configuration-wizard-errors.md#troubleshoot-other-error-messages).
57+
You can also try to find and fix the problem by scanning the **Application** and **System** logs in Event Viewer for directory synchronization events. For more information, see [Troubleshoot other error messages](installation-configuration-wizard-errors.md#troubleshoot-other-error-messages).
5858

59-
## Solution 3: Reinstall directory synchronization
59+
## Solution 3: Check the Microsoft Entra ID Sync (ADSync) service account
6060

61-
If solutions 1 and 2 don't resolve the issue, remove and then reinstall directory synchronization.
61+
If solutions 1 and 2 don't resolve the issue, verify the status of your custom ADSync service account. Ensure that the account isn't expired or disabled, that the **User must change password at next logon** option isn't enabled, and that its password isn't expired. If the password was changed, use the **Services.msc** console to update the ADSync service account password.
6262

63-
For example, if you use the Azure Active Directory Sync tool, remove and then reinstall it. Or, if you use Azure AD Sync, remove and then reinstall it.
63+
For more information about other types of Windows service accounts, see [ADSync service account](/entra/identity/hybrid/connect/concept-adsync-service-account).
6464

6565
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

support/entra/entra-id/user-prov-sync/troubleshoot-permission-issue-sync-service-manager.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To find the on-premises AD connector account, use one of the following tools.
5454

5555
1. In the **Additional tasks** screen, select the **View or export current configuration** task, and then select the **Next** button.
5656

57-
1. In the **Review your solution** screen, locate the **Synchronized Directories** heading, and then copy the `MSOL_<hex-digits>` string from within the **ACCOUNT** field value.
57+
1. In the **Review your solution** screen, locate the **Synchronized Directories** heading, and then copy the string from within the **ACCOUNT** field value. By default, the automatically created account follows the format `DOMAIN\MSOL_<hex-digits>`.
5858

5959
1. Select the **Exit** button.
6060

@@ -87,6 +87,15 @@ Get-ADSyncToolsADconnectorAccount
8787

8888
The output is a table that displays the `Name`, `Forest`, `Domain`, and `Username` columns for each Active Directory connector account. The text string that you want to copy is in the `Username` column.
8989

90+
```console
91+
92+
Name Forest Domain Username
93+
---- ------ ------ --------
94+
corp.contoso.com corp.contoso.com domain.contoso.com MSOL__<hex-digits>
95+
test.local test.local test.local MSOL__<hex-digits>
96+
97+
```
98+
9099
</details>
91100

92101
### Part 2: Determine which attributes the on-premises Active Directory connector account doesn't have permissions for
@@ -109,8 +118,10 @@ The output is a table that displays the `Name`, `Forest`, `Domain`, and `Usernam
109118

110119
1. Identify the Microsoft Entra Connect feature that you're using by following one of these methods:
111120

121+
- When using 'mS-DS-ConsistencyGuid' attribute as the source anchor, the added attribute will be the [mS-DS-ConsistencyGuid](/entra/identity/hybrid/connect/plan-connect-design-concepts#using-ms-ds-consistencyguid-as-sourceanchor) attribute.
122+
112123
- Review the list of [Exchange hybrid writeback](/azure/active-directory/hybrid/connect/reference-connect-sync-attributes-synchronized#exchange-hybrid-writeback) attributes to synchronize, and then return to the **Attribute information** table UI to find the Exchange hybrid writeback attribute that ADSync was trying to add or modify. For example, the added or modified attribute might be the [msDS-ExternalDirectoryObjectID](/openspecs/windows_protocols/ms-ada2/0abc1d06-ac09-476f-a60b-5deb05b394f7) attribute.
113-
124+
114125
- Check the Microsoft Entra Connect features by running the `Get-ADSyncGlobalSettings` cmdlet from a PowerShell session, as shown in the following code:
115126

116127
```azurepowershell
Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
---
2-
title: Buttons such as Track and Set Regarding are missing
3-
description: Buttons such as Track and Set Regarding are missing in Microsoft Dynamics 365 App for Outlook. Provides a resolution.
2+
title: Track and Set Regarding icons are missing
3+
description: Solves the issue that the icons of the Track button and the Set Regarding button are missing in Microsoft Dynamics 365 App for Outlook.
44
ms.reviewer:
5-
ms.topic: troubleshooting
6-
ms.date: 03/31/2021
5+
ms.date: 03/06/2025
76
ms.custom: sap:Dynamics 365 App for Outlook Add-In
87
---
9-
# Buttons such as Track and Set Regarding are missing in Microsoft Dynamics 365 App for Outlook
8+
# Track and Set Regarding icons are missing in Dynamics 365 App for Outlook
109

11-
This article provides a resolution for the issue that icons for buttons such as Track and Set Regarding are missing in Microsoft Dynamics 365 App for Outlook.
10+
This article provides a resolution for an issue where icons for buttons such as [Track and Set Regarding](/dynamics365/outlook-app/user/track-message-or-appointment) are missing in Microsoft Dynamics 365 App for Outlook.
1211

1312
_Applies to:_ &nbsp; Dynamics 365 App for Outlook
1413
_Original KB number:_ &nbsp; 4464349
1514

1615
## Symptoms
1716

18-
When opening the Microsoft Dynamics 365 App for Outlook using Outlook desktop or Internet Explorer, icons for buttons such as Track and Set Regarding are missing. The buttons still function but the visual icons are missing. If you open the app in another browser such as Edge or Chrome, the button icons do appear.
17+
When you open Dynamics 365 App for Outlook using Outlook desktop or Internet Explorer, icons for buttons such as **Track** and **Set Regarding** are missing. The buttons still function, but the visual icons are missing. However, if you open the app in another browser, such as Microsoft Edge or Google Chrome, the button icons do appear.
1918

2019
> [!NOTE]
21-
> If the Track and Set Regarding options are completely missing, see [Track and Set Regarding options are missing in Microsoft Dynamics 365 App for Outlook](https://support.microsoft.com/help/4462486).
20+
> If the **Track** and **Set Regarding** buttons are completely missing, see [Track and Set Regarding options are missing in Microsoft Dynamics 365 App for Outlook](track-set-regarding-options-miss.md).
2221
2322
## Cause
2423

@@ -29,16 +28,16 @@ This issue can occur if your Internet Explorer security settings are configured
2928
3029
## Resolution
3130

32-
If the symptoms match what is described in the Symptom section, try the following resolution:
31+
To solve this issue:
3332

3433
1. Open Internet Explorer.
3534
2. Select the gear icon in the upper-right corner and then select **Internet Options**.
3635
3. Select the **Security** tab.
3736
4. Select the security zone used for your Microsoft Dynamics 365 URL and then select **Custom level**.
38-
5. Scroll down to the Downloads section to find the setting **Font download** and verify it is set to **Enable**.
37+
5. Scroll down to the **Downloads** section to find the **Font download** setting and verify it's set to **Enable**.
3938
6. Select **OK**.
4039
7. Close and reopen Outlook.
4140

42-
If the steps above do not resolve the issue, refer to the following Blog post that discusses other potential causes for font icons not appearing in Internet Explorer:
41+
If the steps don't resolve the issue, refer to the following blog post that discusses other potential causes for font icons not appearing in Internet Explorer:
4342

44-
[Windows 10 with Internet Explorer 11 some website graphic icons are missing](/archive/blogs/askie/windows-10-with-internet-explorer-11-some-website-graphic-icons-are-missing).
43+
[Windows 10 with Internet Explorer 11 some website graphic icons are missing](/archive/blogs/askie/windows-10-with-internet-explorer-11-some-website-graphic-icons-are-missing)

support/power-platform/dataverse/d365-app-outlook/current-user-role-not-have-required-permissions.md

Lines changed: 0 additions & 47 deletions
This file was deleted.
Lines changed: 35 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,58 @@
11
---
2-
title: Dynamics 365 App for Outlook is missing
3-
description: Provides a solution to an issue where Microsoft Dynamics 365 App for Outlook is missing from Microsoft Dynamics 365 navigation.
2+
title: Dynamics 365 App for Outlook option is missing from navigation
3+
description: Solves an issue where Microsoft Dynamics 365 App for Outlook is missing from the Dynamics 365 navigation pane.
44
ms.reviewer:
5-
ms.topic: troubleshooting
6-
ms.date: 03/31/2021
5+
ms.date: 03/06/2025
76
ms.custom: sap:Dynamics 365 App for Outlook Add-In
87
---
9-
# Microsoft Dynamics 365 App for Outlook is missing from Microsoft Dynamics 365 navigation
8+
# Dynamics 365 App for Outlook is missing from the navigation pane
109

11-
This article provides a solution to an issue where Microsoft Dynamics 365 App for Outlook is missing from Microsoft Dynamics 365 navigation.
10+
This article provides a solution to an issue where Microsoft Dynamics 365 App for Outlook is missing from the Dynamics 365 navigation pane.
1211

1312
_Applies to:_ &nbsp; Dynamics 365 App for Outlook
1413
_Original KB number:_ &nbsp; 4339287
1514

1615
## Symptoms
1716

18-
You're unable to find the Dynamics 365 App for Outlook option under **Settings** in your Dynamics 365 organization.
17+
You can't find the **Dynamics 365 App for Outlook** option under **Settings** in your Dynamics 365 organization.
1918

2019
## Cause
2120

22-
It can be the result of customization to your navigation menu (sitemap). A customization can be applied from a solution or an administrator could have explicitly edited the sitemap xml, or used the sitemap designer to remove it.
21+
This issue might be due to customization of the navigation menu (site map). The customization could've been applied from a solution, or an administrator could have explicitly edited the site map XML or used the site map designer to remove the option.
2322

2423
## Resolution
2524

26-
You can add the Dynamics 365 App for Outlook option under **Settings** by editing the sitemap within the sitemap designer:
25+
You can add the **Dynamics 365 App for Outlook** option to **Settings** by editing the site map within the [site map designer](/dynamics365/customerengagement/on-premises/customize/create-site-map-app):
2726

2827
1. Access your Dynamics 365 organization as a user with the System Administrator or System Customer role.
29-
2. Navigate to **Settings**, **Customization**, and then select **Customize the System.**
30-
3. Select **Client Extensions**, select **Sitemap**, and then select **Edit**.
31-
4. Select the **Settings** area.
32-
5. Select the **System** group.
33-
6. Select **+ Add** and then select **Subarea**.
34-
7. Select the **Type** dropdown and select **URL**.
35-
8. Copy and paste the following value into the **URL** field:
36-
`/tools/appsforcrm/AppForOutlookAdminSettings.aspx`
37-
9. In the **Title** field, type **Dynamics 365 App for Outlook**.
38-
10. For the **Icon** option, select the following option if it's available or select the default icon or any other icon:
39-
`/_imgs/area/crm_apps_16x16.png`
40-
11. Use the following value for the **ID** value: **crmapp_outlook**
41-
12. Select **Save** and then select **Publish.**
42-
13. Close the sitemap designer
43-
14. Within the **Solution** dialog, select **Publish All Customizations**.
44-
15. Sign out and log back into the organization.
28+
2. Navigate to **Settings** > **Customization**, and then select **Customize the System**.
29+
3. In the solution window, under **Components**, select **Client Extensions** > **Sitemap**, and then select **Edit**.
30+
4. Select the **Settings** area and then select the **System** group.
31+
5. Select **+ Add** and then select **Subarea**.
32+
6. Select the **Type** dropdown and select **URL**.
33+
7. Copy and paste the following value into the **URL** field:
34+
35+
**/tools/appsforcrm/AppForOutlookAdminSettings.aspx**
36+
37+
8. In the **Title** field, type **Dynamics 365 App for Outlook**.
38+
39+
9. For the **Icon** field, select the following option if it's available or select the default icon or any other icon:
40+
41+
**/_imgs/area/crm_apps_16x16.png**
42+
43+
10. Enter the **crmapp_outlook** value in the **ID** field.
44+
11. Select **Save** > **Publish**.
45+
12. Close the site map designer.
46+
13. Within the **Solution** dialog, select **Publish All Customizations**.
47+
14. Sign out and sign back in to the organization.
4548

4649
## More information
4750

48-
To directly access the Dynamics 365 App for Outlook page used for deploying the app, append the following text to your Dynamics 365 URL:
49-
`/tools/appsforcrm/AppForOutlookAdminSettings.aspx`
51+
- [Deploy and install Dynamics 365 App for Outlook](/dynamics365/outlook-app/deploy-dynamics-365-app-for-outlook)
52+
- To directly access the Dynamics 365 App for Outlook page used for deploying the app, append the following text to your Dynamics 365 URL:
53+
54+
`/tools/appsforcrm/AppForOutlookAdminSettings.aspx`
55+
56+
For example:
5057

51-
For example:
52-
`https://contoso.crm.dynamics.com/tools/appsforcrm/AppForOutlookAdminSettings.aspx`
58+
`https://contoso.crm.dynamics.com/tools/appsforcrm/AppForOutlookAdminSettings.aspx`

0 commit comments

Comments
 (0)