385,446 questions

Sort by: Updated
0 answers

How to retrieve variables in Azure API to construct expression for obtaining OAuth token in body

Hi, Below is the set-body code block that I have some problems with.Im having problem constructing an expression for obtaining an OAuth token. I use 3 variables {{clientId}}, {{scope}} and {{clientSecrets}} instead of hardcoding those values. No matter…

Azure API Management
Azure API Management
An Azure service that provides a hybrid, multi-cloud management platform for APIs.
2,166 questions
asked 2024-11-04T20:28:39.14+00:00
Quynh Hoang 0 Reputation points
edited the question 2024-11-04T22:38:42.83+00:00
Quynh Hoang 0 Reputation points
0 answers

Exploring Cost-Effective Solutions for Routing Traffic from an Azure Private Endpoint to a VPN Gateway

Greetings, I would appreciate assistance with a design to a solution I would like to implement on Azure. Below I summarized all the information and approaches I tried. Customer has a private endpoint on a "consumer" VNet, from which I…

Azure VPN Gateway
Azure VPN Gateway
An Azure service that enables the connection of on-premises networks to Azure through site-to-site virtual private networks.
1,555 questions
Azure Private Link
Azure Private Link
An Azure service that provides private connectivity from a virtual network to Azure platform as a service, customer-owned, or Microsoft partner services.
514 questions
asked 2024-11-01T16:40:03.28+00:00
Omer Cohen 0 Reputation points
commented 2024-11-04T22:38:21.8133333+00:00
Omer Cohen 0 Reputation points
3 answers

How to validate security stamp on next request

When using ASP.NET Core Identity how can I make it so a user's security stamp will be validated on the next request they make? For context I have a logout all sessions feature and I want to logout other sessions immediately on the next request after the…

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,604 questions
asked 2024-11-03T19:30:43.2833333+00:00
iKingNinja 60 Reputation points
edited a comment 2024-11-04T22:37:48.1866667+00:00
SurferOnWww 3,031 Reputation points
0 answers

Azure App + Sharepoint APIs : Error validating credentials due to invalid username or password. Trace ID: axxxxxx-db6a-46b8-be24-60837be19c00

Hi Team, My internal MS365 team has created a Azure app and we are using ROPC flow to authenticate service account ( which is already added in the AD). I trying to generate a Token to Authenticate Sharepoint Graph API. Below API end point -…

SharePoint Development
SharePoint Development
SharePoint: A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.Development: The process of researching, productizing, and refining new or existing technologies.
3,030 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,889 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,061 questions
asked 2024-10-24T14:53:44.7133333+00:00
Doshi, Amit 0 Reputation points
commented 2024-11-04T22:37:33.34+00:00
Navya 11,790 Reputation points Microsoft Vendor
2 answers

IoT Edge 1.0 and 1.1 devices cannot authorize to the IoT Hub anymore

Hello, since last week our Azure IoT edge 1.0 and 1.1 devices cannot connect to our IoT Hub anymore. We use device certificates and DPS and we see that the certificates are valid and DPS registers the devices to the Hub correct, however as soon as the…

Azure IoT Edge
Azure IoT Edge
An Azure service that is used to deploy cloud workloads to run on internet of things (IoT) edge devices via standard containers.
576 questions
Azure IoT Hub
Azure IoT Hub
An Azure service that enables bidirectional communication between internet of things (IoT) devices and applications.
1,198 questions
asked 2024-10-14T09:24:59.6866667+00:00
Davy Meybos 50 Reputation points
edited an answer 2024-11-04T22:36:38.9133333+00:00
Sander van de Velde | MVP 32,811 Reputation points MVP
0 answers

Error installing SQL SERVER EXPRESS on Windows 11

I am trying to install SQL Server Express 2019 on my new Windows 11 laptop. I have tried searching errors, but am not experienced enough to link solutions to my specific issue. Any help appreciated!

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,958 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
9,861 questions
asked 2024-11-04T22:33:49.0133333+00:00
Anthony Gribben-Lisle 0 Reputation points
commented 2024-11-04T22:34:32.25+00:00
Anthony Gribben-Lisle 0 Reputation points
0 answers

Azure Guidance for Phi-3.5 endpoint not working

Several weeks ago, I set up an Phi-3.5-mini-instruct endpoint using Azure AI Studio. I then code based on the following tutorial: https://github.com/microsoft/Phi-3CookBook/blob/main/code/01.Introduce/guidance.ipynb The code worked as of Wednesday,…

Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,896 questions
asked 2024-11-04T17:14:24.72+00:00
Glenn Wright 5 Reputation points
commented 2024-11-04T22:29:07.25+00:00
Glenn Wright 5 Reputation points
0 answers

como resolver este problema de conta de armazenamto no azure

como resolver este problema de conta de armazenamto no azure, sou novo porem nao estou encontrando resposta para esta questao.

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
39,620 questions
asked 2024-11-04T12:46:14.21+00:00
Marciano nobre de oliveira 0 Reputation points
edited the question 2024-11-04T22:26:58.3+00:00
Keshavulu Dasari 1,065 Reputation points Microsoft Vendor
1 answer One of the answers was accepted by the question author.

How to use function `CreateIconIndirect` with 32 bit bitmaps?

Most icon related documentation is still written with the assumption that the user will want to create a black and white icon, even though we are in the year 2024. A 32 bit bitmap has both the color information and the transparency mask in the same…

Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,484 questions
Windows API - Win32
Windows API - Win32
A core set of Windows application programming interfaces (APIs) for desktop and server applications. Previously known as Win32 API.
2,650 questions
asked 2024-11-03T20:53:08.11+00:00
László Szerémi 35 Reputation points
commented 2024-11-04T22:20:43.85+00:00
László Szerémi 35 Reputation points
1 answer

Can't run query if defining temp table

I have the following T-SQL: alter procedure myProc_sp AS BEGIN create table #myTable ( retireeId varchar(12) ) select getDate() return END With the 'create table' statement in there, it returns zero rows. If I comment out the 'create table' it…

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,958 questions
asked 2024-11-04T17:42:24.9766667+00:00
OHPRS Admin 211 Reputation points
commented 2024-11-04T22:18:47.11+00:00
Naomi Nosonovsky 7,856 Reputation points
3 answers

SQL Server 2022 won't install

Overall summary: Final result: Failed: see details below Exit code (Decimal): -2068119551 Exit facility code: 1211 Exit error code: 1 Exit message: Cannot find registry key…

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,958 questions
asked 2023-03-08T13:29:55.8733333+00:00
Zuhayr Arif Zakaria 5 Reputation points
commented 2024-11-04T22:17:54.1266667+00:00
saul martinez 0 Reputation points
1 answer

How do I get a collapsible submenu in the left side navigation menu?

I am rewriting an old ASP.NET WebForms application. I am using Razor, so that I can use Windows Authentication, then Blazor in some of the pages, but at this point my question isn't about Blazor, it is about Razor. I want to add a collapsible submenu in…

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,604 questions
asked 2024-11-04T18:26:59.5966667+00:00
Falanga, Rod, DOH 190 Reputation points
answered 2024-11-04T22:17:48.8133333+00:00
Bruce (SqlWork.com) 66,226 Reputation points
1 answer One of the answers was accepted by the question author.

Don't see my comment just added

Hi, I just added a comment in this thread https://learn.microsoft.com/en-us/answers/questions/2115332/cant-run-query-if-defining-temp-table?page=1&orderby=newest but I don't see it so I don't know if it was added or not. Also, forum's view doesn't…

Microsoft Q&A
Microsoft Q&A
Use this tag to share suggestions, feature requests, and bugs with the Microsoft Q&A team. The Microsoft Q&A team will evaluate your feedback on a regular basis and provide updates along the way.
816 questions
asked 2024-11-04T19:56:29.6866667+00:00
Naomi Nosonovsky 7,856 Reputation points
edited a comment 2024-11-04T22:17:48.3666667+00:00
Naomi Nosonovsky 7,856 Reputation points
1 answer

How to parse SNMP traps in C#?

Hi All, We have a C# console application built on .Net core. We have requirement to parse SNMP trap in C#. My question is is there any method/class available in to parse below sample SNMP trap? Sample SNMP trap: 2020-08-04 04:56:45 04:56:44 2020/08/04…

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,001 questions
asked 2022-05-10T10:10:39.327+00:00
B-K Hariprasad 1 Reputation point
answered 2024-11-04T22:15:03.3133333+00:00
Lex Li (Microsoft) 5,582 Reputation points Microsoft Employee
0 answers

"A assinatura selecionada não tem permissões para registrar o provedor de recursos.

Estou acompanhando as aulas do curso Escola do Trabalhador 4.0 e estou tendo um problema na etapa de criação de um recurso do Azure Machine Learnig Durante o processo de criação do Workspace, recebi uma mensagem de alerta com a seguinte…

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
39,620 questions
asked 2024-11-04T12:53:52.3433333+00:00
Marciano nobre de oliveira 0 Reputation points
edited the question 2024-11-04T22:13:43.86+00:00
Keshavulu Dasari 1,065 Reputation points Microsoft Vendor
1 answer One of the answers was accepted by the question author.

Alias records

Hello, I am a beginner. Please explain me 2 things - the word 'instance' - VM instances, container instances etc. - does it mean that original VM or container -created has another virtual replica? Also, the term 'alias records' I am looking at this text…

Azure DNS
Azure DNS
An Azure service that enables hosting Domain Name System (DNS) domains in Azure.
690 questions
asked 2024-10-31T20:43:00.7633333+00:00
Marouf Ali 240 Reputation points
commented 2024-11-04T22:11:12.9466667+00:00
Rohith Vinnakota 1,000 Reputation points Microsoft Vendor
0 answers

SQL Server Database Engine Services Instance Features

I'm having trouble reinstalling SQL Server Express 2022 on my computer. My Windows is up to date, and my system meets the minimum requirements. I had SQL Server Express installed before, but since reformatting my system, I’ve been unable to install it…

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,958 questions
asked 2024-11-04T22:11:11.4866667+00:00
francisco lopes 0 Reputation points
0 answers

"A assinatura selecionada não tem permissões para registrar o provedor de recursos.

Durante o processo de criação do Workspace, recebi uma mensagem de alerta com a seguinte informação: "A assinatura selecionada não tem permissões para registrar o provedor de recursos

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
39,620 questions
asked 2024-11-04T12:55:05.2466667+00:00
Marciano nobre de oliveira 0 Reputation points
edited the question 2024-11-04T22:10:49.58+00:00
Keshavulu Dasari 1,065 Reputation points Microsoft Vendor
0 answers

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
4 answers

Windows 11 | Computer says i have no internet connection (Wi-Fi and Ethernet), yet i am connected.

Hi! I have an issue with my internet, both Ethernet and Wi-Fi, where it says i'm not connected to internet yet i can browse the web, play online games and other things requiring internet. I am unble to update windows through the windows update tool, i'm…

Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
9,861 questions
asked 2024-01-05T11:19:17.0766667+00:00
Jørgen Sandberg 35 Reputation points
commented 2024-11-04T22:10:06.7233333+00:00
Rachel Turner 0 Reputation points