385,927 questions

Sort by: Updated
1 answer

View output of Azure function implemented with python on linux consumption plan

Hi everyone, I'm creating a couple of azure functions using python and would like to see the logging data when the function is executed. In my local environment, I can see this in vscode terminal: My question is, how can I achieve the same in the Azure…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,088 questions
Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,021 questions
asked 2024-11-06T17:34:52.4333333+00:00
Paul Hernandez 676 Reputation points Microsoft Employee
answered 2024-11-06T20:06:11.08+00:00
Luis Arias 7,121 Reputation points
0 answers

EntraID - Update appRoles Application

Good morning, I'm trying to create Application Roles with the following permissions: Application.ReadWrite.All and AppRoleAssignment.ReadWrite.All (Delegates and Applications). However, I receive the following error when following the documentation: { …

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
22,078 questions
asked 2024-10-30T14:15:11.4233333+00:00
Wagner Costa 10 Reputation points
edited a comment 2024-11-06T20:04:20.5433333+00:00
Navya 12,175 Reputation points Microsoft Vendor
2 answers

How to get normal "Start" and programs like menu in my Windows 11 Pro ?

Hi, How to get normal "Start" and programs like menu in my Windows 11 Pro ? Following are the details of the OS and its versions. Edition Windows 11 Pro Version 23H2 Installed on ‎13-‎03-‎2024 OS build 22631.3593 Experience Windows Feature…

Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
9,871 questions
asked 2024-11-04T15:41:14.34+00:00
Nishi 0 Reputation points
edited the question 2024-11-06T19:58:00.6066667+00:00
Rob Caplan - MSFT 5,537 Reputation points Microsoft Employee
1 answer

More than 5 custom domains per static web app

Hi, I'm sending link to a twitter where I've described the problem. https://twitter.com/_piotr/status/1471715545145819136?s=20

Azure Static Web Apps
Azure Static Web Apps
An Azure service that provides streamlined full-stack web app development.
963 questions
asked 2021-12-17T08:03:41.103+00:00
Piotr Czyz 1 Reputation point
commented 2024-11-06T19:57:09.5466667+00:00
Alexander Bondurant 0 Reputation points
0 answers

Static App Only Allows 10 Domains Forwarded from Front Door?

I have a multi-tenant Saas offering that runs on a static app on the front end and azure functions for back end. One of the requirements is to give the option for each customer to bring their own domain so generally is 1 to 1 from tenant to custom…

Azure Front Door
Azure Front Door
An Azure service that provides a cloud content delivery network with threat protection.
691 questions
Azure Static Web Apps
Azure Static Web Apps
An Azure service that provides streamlined full-stack web app development.
963 questions
asked 2024-11-06T19:56:14.3533333+00:00
Alexander Bondurant 0 Reputation points
1 answer

Backup Cosmos DB

Bom dia! estou com dificuldade para fazer backup do meu banco, estou utilizando a versão free do cosmos db até 32gb, mas meu banco é bem menor que isso. Quando rodo o backup via script ou por ferramenta como mongo db compass, em ambos apresenta erro pra…

Azure Cosmos DB
Azure Cosmos DB
An Azure NoSQL database service for app development.
1,664 questions
asked 2024-11-06T11:43:04.9433333+00:00
Hertech Innovations 20 Reputation points
answered 2024-11-06T19:56:06.81+00:00
Mahesh Kurva 725 Reputation points Microsoft Vendor
0 answers

Waiting for an available agent - All eligible agents are disabled - Microsoft-Hosted Agent

We are using a Microsoft-hosted agent in Devops. Our Release pipeline is stuck and has been for over 10 hours. It has a message: Waiting for an available agent - All eligible agents are disabled or offline. Our agent is idle and available. Everything…

Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,021 questions
asked 2024-11-06T19:53:40.1866667+00:00
Mike Langford (DEN) 0 Reputation points
2 answers

Entra App Registration - Policy to Restrict Client Secret Expiration to 6 Months Globally

Hello, A customer wants to restrict App registration client secret to 6 months for all developers globally. Is there a way to implement this, for example, using Azure Policy? Thanks.

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
22,078 questions
asked 2024-11-05T16:53:50.8366667+00:00
Terru Ahmad 0 Reputation points
answered 2024-11-06T19:50:32.7833333+00:00
Raja Pothuraju 7,675 Reputation points Microsoft Vendor
1 answer

How to covert UTC time to CST

I have a dataset recorded in UTC format. I want to covert it and add a field as CST. I used convert(datetime, switchoffset(convert(datetimeoffset, @UTCTime), datename(TzOffset, sysdatetimeoffset()))) to covert CST. However, I found it changed the time…

Transact-SQL
Transact-SQL
A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
4,652 questions
asked 2024-11-04T22:10:18.3466667+00:00
2956 1 Reputation point
answered 2024-11-06T19:50:04.7433333+00:00
Bruce (SqlWork.com) 66,461 Reputation points
0 answers

How do I redeem Microsoft Office 365 for a new domain. I am being asked to buy o365 and not redeem. 2. Azure Admin does not allow me in. the error message is I have to use a work email... now I am still operating under my personal email,

How do I redeem Microsoft Office 365 for a new domain. I am being asked to buy o365 and not redeem. 2. Azure Admin does not allow me in. the error message is I have to use a work email... now I am still operating under my personal email, and hoping to…

Azure Startups
Azure Startups
Azure: A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.Startups: Companies that are in their initial stages of business and typically developing a business model and seeking financing.
382 questions
asked 2024-11-06T15:35:32.2966667+00:00
Raghu Raman Balachandran 5 Reputation points
commented 2024-11-06T19:49:45.0633333+00:00
Navya 12,175 Reputation points Microsoft Vendor
1 answer

Difference between 'client.GetStringAsync' and 'await client.GetStringAsync'

Hello! I have a synchronous function that I cannot change to async. How can I still call it correctly without using GetAwaiter? Task<string> task = client.GetStringAsync("http://ifconfig.me"); Task<string> task3 =…

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
11,006 questions
asked 2024-11-06T15:32:36.5333333+00:00
Noah Aas 460 Reputation points
edited an answer 2024-11-06T19:48:41.8433333+00:00
P a u l 10,736 Reputation points
15 answers

Microsoft Authenticator - Unable to recover 'your backup is not stored with this email'

I've recently factory reset my phone (OnePlus 5T) and am now unable to recover my backup. Before resetting my phone, I made sure that cloud backup was enabled and I'm sure the recovery account was assigned to my primary email account. However,…

Microsoft Authenticator
Microsoft Authenticator
A Microsoft app for iOS and Android devices that enables authentication with two-factor verification, phone sign-in, and code generation.
7,103 questions
asked 2022-08-04T13:01:05.23+00:00
Ben Stein 61 Reputation points
answered 2024-11-06T19:43:15.7133333+00:00
Megami T 0 Reputation points
1 answer

How to join the 3 KQL tables?

Hi all, I want to get the inactive users data with seesionhostname, hostpoolname, lastlogindate,username and i am trying to get it through KQL query which we need to join 3 tables i am getting the below error 'join' operator: Failed to resolve column…

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
3,315 questions
asked 2024-11-01T19:20:18.39+00:00
kavya madda 60 Reputation points
commented 2024-11-06T19:43:11.6466667+00:00
Ryan Hill 28,631 Reputation points Microsoft Employee
1 answer

Where can I view the video embedded in this Microsoft Learn web page? It's not loading correctly.

Unit 3 of the Microsoft Azure Fundamentals: Describe Cloud Concepts (https://learn.microsoft.com/en-us/training/modules/describe-cloud-compute/3-what-cloud-compute) has an embedded video that displays as a white box and does not play. Behavior seen on…

Azure Training
Azure Training
Azure: A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.Training: Instruction to develop new skills.
1,716 questions
asked 2024-11-06T19:42:59.7366667+00:00
Jordan S 0 Reputation points
answered 2024-11-06T19:42:59.7566667+00:00
Q&A Assist
1 answer One of the answers was accepted by the question author.

Microsoft Entra: Graph API v1.0 userRegistrationDetails Not Returning MFA Status for all Users.

When I queried the graph api v1.0 endpoint for userRegistrationDetails to obtain Mfa registration and isAdmin, I see a very small subset of users from my on permise environment (not mfa enabled nor admin). The dashboard also reports the same value seen…

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,254 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
22,078 questions
asked 2024-11-06T15:23:43.1933333+00:00
Joe Mayer 0 Reputation points
accepted 2024-11-06T19:41:27.73+00:00
Joe Mayer 0 Reputation points
0 answers

How to fix the ASR registration issue for Hyper-V cluster nodes

I was trying to configure the ASR on Hyper-V cluster node, but its failing while registering and end up with the error,

Azure Site Recovery
Azure Site Recovery
An Azure native disaster recovery service. Previously known as Microsoft Azure Hyper-V Recovery Manager.
718 questions
Hyper-V
Hyper-V
A Windows technology providing a hypervisor-based virtualization solution enabling customers to consolidate workloads onto a single server.
2,733 questions
asked 2024-11-05T11:50:59.23+00:00
Ranjitha S 0 Reputation points
commented 2024-11-06T19:29:15.8266667+00:00
Pavan Minukuri 110 Reputation points Microsoft Vendor
1 answer

Azure VM connection to fetch images from Azure DevOps Pipeline

Hello Everyone, So we have some workloads hosted as Azure IaaS VMs running Linux. Few of the VMs need access to Azure Docker Registry on the Azure DevOps pipeline. But Our organization policy does not allow the workloads to connect to the internet. Is…

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
39,672 questions
asked 2024-11-05T05:52:31.2033333+00:00
Mohammed Saiful Hussain 20 Reputation points
edited the question 2024-11-06T19:27:17.0333333+00:00
Prrudram-MSFT 25,156 Reputation points
1 answer One of the answers was accepted by the question author.

Could not load resource. Please ensure no mistakes in the JSON and that referenced resources exist.

Dear experts, I successfully created a data flow 2 weeks ago, and until then, I was able to edit it.. However, this Monday morning, I noticed that I can no longer edit it. When I try to open the data flow, I encounter the following message: “Could not…

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,823 questions
asked 2024-11-04T09:26:28.8233333+00:00
Fouad 20 Reputation points
accepted 2024-11-06T19:26:04.8666667+00:00
Fouad 20 Reputation points
0 answers

I cannot see my usage credits history and check my balance MoM

I'm trying to access my usage history using this link (same as used I before and it was working fine), and the page says that I don't have an active subscription, which is wrong because its being used and I have lots of credits available. …

Azure Startups
Azure Startups
Azure: A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.Startups: Companies that are in their initial stages of business and typically developing a business model and seeking financing.
382 questions
asked 2024-11-06T19:25:41.57+00:00
Diego Aguiar 0 Reputation points
0 answers

Waiting for an available agent - All eligible agents are disabled or offline

Our deployment pipeline was working yesterday and as of last night it just stopped. We have a release that has been spinning for the last 10 hours with the message "Waiting for an available agent - All eligible agents are disabled or offline".…

Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,021 questions
asked 2024-11-06T19:25:01.5533333+00:00
Mike Langford (DEN) 0 Reputation points