Skip to content

Commit 4408c83

Browse files
Merge remote-tracking branch 'upstream/main' into CI-6951-recreate-edits
2 parents 73b0b21 + 00d11b6 commit 4408c83

File tree

6 files changed

+119
-8
lines changed

6 files changed

+119
-8
lines changed

Teams/teams-rooms-and-devices/teams-rooms-known-issues-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ appliesto:
2222
- Microsoft Teams
2323
search.appverid:
2424
- MET150
25-
ms.date: 07/01/2025
25+
ms.date: 10/02/2025
2626
---
2727
# Known issues with Teams Rooms on Windows
2828

@@ -41,6 +41,7 @@ ms.date: 07/01/2025
4141
|Unable to join some Webex meetings|When you select the **Join** button to join a Cisco Webex meeting from a Teams Rooms on Windows device, you're not connected to the meeting and see the home screen on the device instead.|No workaround is available at this time. Cisco is investigating the issue.|
4242
|Only see one camera's view even though multi-camera feature is turned on.|Your Teams Rooms on Windows device is configured for multiple cameras. However after the device restarts, remote users might see only the default camera's view.<br/><br/>This issue might occur only in the first meeting after the device restarts. The cameras function as expected in all subsequent meetings.|To work around the issue, end the first meeting after the device restarts, and start a second meeting.|
4343
|Front of Room view displays a blank, black screen on a remote access tool.|When you access a Teams Rooms on Windows console remotely by using tools such as the Teams Rooms Pro Management Portal (PMP), TeamViewer, Virtual Network Computing (VNC) etc., the Front of Room (FoR) monitors display a black image instead of the expected user interface.<br/><br/>The FoR monitors in the meeting room display the expected screen but show only a black image in the view on the remote access tool.<br/><br/>If you sign in to the Teams Rooms device by using administrator credentials, you see the Windows screen in the FoR view as expected.|Restart your device to update to the latest configuration to fix the issue.|
44+
|Automatic remediation in Pro Management portal keeps failing.|The built-in remediation in the Microsoft Teams Rooms Pro Management portal to disable the USB peripheral power draining option under Windows USB settings keeps failing with the error message:<br/><br/>`Auto Remediation was unable to resolve this issue.`|To resolve the issue, implement a manual fix as described in [USB Peripheral Power Drain signal is unhealthy](./usb-peripheral-power-drain-status-unhealthy.md).|
4445

4546
## Hardware issues
4647

@@ -65,6 +66,5 @@ For issues with Teams devices offered by third-party providers, contact their in
6566
- Logitech: [Logitech Support](https://support.logi.com/hc/)
6667
- Crestron: [Crestron Support](https://support.crestron.com/)
6768
- Poly: [Poly Support](https://www.poly.com/us/support)
68-
- Yealink: [Yealink Support](https://support.yealink.com/portal/home)
6969

7070
[!INCLUDE [Third-party disclaimer](../../includes/third-party-contact-disclaimer.md)]

azure-pipelines.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Starter pipeline
2+
# Start with a minimal pipeline that you can customize to build and deploy your code.
3+
# Add steps that build, run tests, deploy, and more:
4+
# https://aka.ms/yaml
5+
6+
trigger:
7+
- main
8+
9+
pool:
10+
vmImage: ubuntu-latest
11+
12+
steps:
13+
- script: echo Hello, world!
14+
displayName: 'Run a one-line script'
15+
16+
- script: |
17+
echo Add other tasks to build, test, and deploy your project.
18+
echo See https://aka.ms/yaml
19+
displayName: 'Run a multi-line script'
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
---
2+
title: Configuring Azure Activity Log Export
3+
description: Provides guidance for resolving issues related to configuring the export of Azure activity logs
4+
ms.date: 10/01/2025
5+
author: JarrettRenshaw
6+
ms.author: jarrettr
7+
ms.reviewer: v-gsitser, v-ryanberg, neghuman, vikamala
8+
ms.service: azure-monitor
9+
ms.custom: I can’t configure export of activity logs
10+
---
11+
12+
# Configure Azure activity log export
13+
14+
This article outlines the steps to successfully configure Azure activity log export. This article also provides solutions to common issues that you might experience, especially if you're transitioning from older methods.
15+
16+
## Configuring activity log export
17+
18+
To configure Azure activity log export, follow these steps.
19+
20+
### Step 1: Verify current configuration
21+
22+
1. Go to the [Azure portal](https://ms.portal.azure.com/auth/login/), and access the **Activity Logs** section.
23+
1. Check the current export settings to make sure that they align with your requirements.
24+
25+
### Step 2: Update legacy methods
26+
27+
1. If you're using legacy APIs, PowerShell commands, or [log profiles](/answers/questions/1851179/what-will-happen-to-the-azure-activity-logs-soluti), update them to use diagnostic settings.
28+
1. Use the `Get-AzOperationalInsightsDataSource` command to verify existing data sources.
29+
30+
### Step 3: Configure new export settings
31+
32+
1. Select **Activity log** > **Export Activity Logs**.
33+
1. Find and select the subscription, and then select **Add diagnostic setting**.
34+
1. In the **Diagnostic setting name** box, enter a name.
35+
1. Select all applicable categories and then select **Save**.
36+
37+
> [!NOTE]
38+
> It usually takes about 30 minutes for the export to begin. For more information, see [Time before telemetry gets to destination](/azure/azure-monitor/platform/diagnostic-settings?tabs=portal#time-before-telemetry-gets-to-destination).
39+
40+
## Common issues and solutions
41+
42+
- **Issue**: Logs aren't appearing in configured destinations.
43+
- **Solution**: See the following guidance for log analytics, event hubs, and storage accounts.
44+
45+
### For log analytics
46+
47+
1. Navigate to **Log Analytics workspaces**.
48+
1. Select the workspace and then run the following query:
49+
50+
```powershell
51+
AzureActivity
52+
| summarize count() by bin(TimeGenerated,1d)
53+
```
54+
55+
This should determine the number of logs per day that are being ingested into this workspace.
56+
57+
### For event hubs
58+
59+
1. Navigate to **Event Hubs**.
60+
1. Select the event hub and then select **Data Explorer**.
61+
1. Verify the logs are reaching the event hub.
62+
63+
If the logs aren't reaching the event hub, check for throttling using a metrics blade.
64+
65+
### For storage accounts
66+
67+
1. Navigate to **Storage center | Storage accounts (Blobs)**.
68+
1. Locate and select the **insights-activity-logs** container.
69+
70+
The logs should be visible.
71+
72+
## Frequently asked questions
73+
74+
**Q1: Why don't the logs appear in the destination?**
75+
76+
**A1:** Make sure that the network is well connected, and verify the permissions for Log Analytics workspace.
77+
78+
**Q2: Why do errors appear in the PowerShell commands?**
79+
80+
**A2:** Make sure that you're using the latest Azure PowerShell module.
81+
82+
## References
83+
84+
- [Azure Monitor documentation](/azure/azure-monitor/fundamentals/overview)
85+
- [Azure activity logs overview](/azure/azure-monitor/fundamentals/data-sources)
86+
- [Configure diagnostic settings](/azure/azure-monitor/platform/diagnostic-settings?tabs=portal)
87+
88+
[!INCLUDE [azure-help-support](../../../../includes/azure-help-support.md)]

support/azure/azure-monitor/toc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ items:
1919
href: activity-logs/config-export/troubleshoot-permission-errors-in-activity-log-configuration.md
2020
- name: Troubleshoot the export of Activity Logs across Azure subscriptions
2121
href: activity-logs/config-export/troubleshoot-export-of-activity-logs-across-subscriptions.md
22+
- name: Configuring Azure Activity Log Export
23+
href: activity-logs/config-export/configuring-azure-activity-log-export-comprehensive-guide.md
24+
2225
- name: Application Insights
2326
items:
2427
- name: OpenTelemetry troubleshooting

support/entra/entra-id/app-integration/error-code-AADSTS50020-user-account-identity-provider-does-not-exist.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ In the prior experience, a directory (for example: UserNamehotmail735.onmicrosof
3333

3434
If you aim to have a directory, you must create an Azure account and a new tenant:
3535

36-
1. Browse to [https://azure.microsoft.com/en-us/free/](https://azure.microsoft.com/free/), and then select **Start free** .
37-
2. Follow the instructions to create an Azure account.
38-
3. A tenant will be generated alongside the Azure account, and you will be automatically designated as the Global Administrator. This grants you full access to all options within this tenant.
36+
1. Browse to [the Azure account website](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn), and then select **Try Azure for free**.
37+
2. Follow the instructions to create an Azure account.
38+
3. A tenant will be generated alongside the Azure account, and you will be automatically designated as the Global Administrator. This grants you full access to all options within this tenant.
3939

4040
## Cause 2: Used unsupported account type (multitenant and personal accounts)
4141

@@ -104,7 +104,7 @@ Make sure that you follow the steps in [Quickstart: Add guest users to your dire
104104

105105
If your application is an enterprise application that requires user assignment, error `AADSTS50020` occurs if the user isn't on the list of allowed users who are assigned access to the application. To check whether your enterprise application requires user assignment:
106106

107-
1. In the [Azure portal](https://portal.azure.com), search for and select **Enterprise applications**.
107+
1. In [the Azure portal](https://portal.azure.com), search for and select **Enterprise applications**.
108108

109109
1. Select your enterprise application.
110110

@@ -157,7 +157,7 @@ Then, check the creation date of the guest user in the resource tenant against t
157157

158158
#### Microsoft Entra PowerShell
159159

160-
Run the [Get-EntraUser](/powershell/module/microsoft.entra/get-entrauser) PowerShell cmdlet to review the user creation date, as follows:
160+
Run the [Get-EntraUser](/powershell/module/microsoft.entra.users/get-entrauser) PowerShell cmdlet to review the user creation date, as follows:
161161

162162
```powershell
163163
Get-EntraUser -UserId {id | userPrincipalName} | Select-Object id, userPrincipalName, createdDateTime

support/power-platform/power-automate/desktop-flows/troubleshoot-errors-running-attended-or-unattended-desktop-flows.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Error code occurs when running an attended or unattended desktop flow
33
description: Provides mitigation steps for the error codes that occur when running attended or unattended desktop flows.
44
ms.date: 09/11/2025
5-
ms.reviewer: cefriant, kenseongtan, guco, johndund, alarnaud, ermathon, iopanag
5+
ms.reviewer: cefriant, kenseongtan, guco, johndund, alarnaud, ermathon, iopanag, v-shaywood
66
ms.custom: sap:Desktop flows\Unattended flow runtime errors
77
---
88
# Error code occurs when running an attended or unattended desktop flow
@@ -70,3 +70,4 @@ _Original KB number:_ &nbsp; 4555406
7070
|MachineNotFound|404|Attended</br>Unattended|This error can occur when the machine is unregistered during a run or if the Dataverse organization has been migrated to a different region. Verify that:</br>- Your machine is still registered by [viewing its status](/power-automate/desktop-flows/manage-machines#view-list-of-machines) in the machine runtime application or the Power Automate portal.</br>- Your [desktop flow connection](/power-automate/desktop-flows/desktop-flow-connections) isn't broken in the Power Automate portal.</br>- [Scripting actions](/power-automate/desktop-flows/actions-reference/scripting) in your flow don't register your machine while the flow is running.|
7171
|NoSessionFoundForPasswordless|400|Attended|An opened session on the machine is required to run the desktop flow in attended mode. You can also use unattended mode instead of using a [Power Automate Process license](/power-platform/admin/power-automate-licensing/deep-dive-on-specific-license#power-automate-process-license).|
7272
|MSEntraRemoteDesktopAppConsentRequired|400|Unattended|The Remote Desktop connection consent dialog was shown when attempting to establish the unattended session. For more information about how to hide the consent dialog, see [Admin consent for unattended runs using CBA or sign-in credentials with NLA](/power-automate/desktop-flows/run-unattended-desktop-flows#admin-consent-for-unattended-runs-using-cba-or-sign-in-credentials-with-nla-preview).|
73+
|UIFlowParentFlowFailed|N/A|Attended</br>Unattended|- Check if a parent cloud flow failed. If so, resolve any issues in the parent flow.</br>- Check if your machine's (or machine group’s) run queue is too large, or if the connection usage is being throttled. If so, assign your desktop flow to a new connection to avoid throttling issues.|

0 commit comments

Comments
 (0)