You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/authentication/howto-mfa-nps-extension-errors.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,8 @@ If you encounter errors with the NPS extension for Azure AD Multi-Factor Authent
29
29
|**ESTS_TOKEN_ERROR**| Follow the instructions in [Troubleshooting the MFA NPS extension](howto-mfa-nps-extension.md#troubleshooting) to investigate client cert and security token problems. |
30
30
|**HTTPS_COMMUNICATION_ERROR**| The NPS server is unable to receive responses from Azure AD MFA. Verify that your firewalls are open bidirectionally for traffic to and from `https://adnotifications.windowsazure.com` and that TLS 1.2 is enabled (default). If TLS 1.2 is disabled, user authentication will fail and event ID 36871 with source SChannel is entered in the System log in Event Viewer. To verify TLS 1.2 is enabled, see [TLS registry settings](/windows-server/security/tls/tls-registry-settings#tls-dtls-and-ssl-protocol-version-settings). |
31
31
|**HTTP_CONNECT_ERROR**| On the server that runs the NPS extension, verify that you can reach `https://adnotifications.windowsazure.com` and `https://login.microsoftonline.com/`. If those sites don't load, troubleshoot connectivity on that server. |
32
-
|**NPS Extension for Azure AD MFA:** <br> NPS Extension for Azure AD MFA only performs Secondary Auth for Radius requests in AccessAccept State. Request received for User username with response state AccessReject, ignoring request. | This error usually reflects an authentication failure in AD or that the NPS server is unable to receive responses from Azure AD. Verify that your firewalls are open bidirectionally for traffic to and from `https://adnotifications.windowsazure.com` and `https://login.microsoftonline.com` using ports 80 and 443. It is also important to check that on the DIAL-IN tab of Network Access Permissions, the setting is set to "control access through NPS Network Policy". This error can also trigger if the user is not assigned a license. |
32
+
|**NPS Extension for Azure AD MFA (AccessReject):** <br> NPS Extension for Azure AD MFA only performs Secondary Auth for Radius requests in AccessAccept State. Request received for User username with response state AccessReject, ignoring request. | This error usually reflects an authentication failure in AD or that the NPS server is unable to receive responses from Azure AD. Verify that your firewalls are open bidirectionally for traffic to and from `https://adnotifications.windowsazure.com` and `https://login.microsoftonline.com` using ports 80 and 443. It is also important to check that on the DIAL-IN tab of Network Access Permissions, the setting is set to "control access through NPS Network Policy". This error can also trigger if the user is not assigned a license. |
33
+
|**NPS Extension for Azure AD MFA (AccessChallenge):** <br> NPS Extension for Azure AD MFA only performs Secondary Auth for Radius requests in AccessAccept State. Request received for User username with response state AccessChallenge, ignoring request. | This response is used when additional information is required from the user to complete the authentication or authorization process. The NPS server sends a challenge to the user, requesting further credentials or information. It usually preceeds an Access-Accept or Access-Reject response. |
33
34
|**REGISTRY_CONFIG_ERROR**| A key is missing in the registry for the application, which may be because the [PowerShell script](howto-mfa-nps-extension.md#install-the-nps-extension) wasn't run after installation. The error message should include the missing key. Make sure you have the key under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\AzureMfa. |
34
35
|**REQUEST_FORMAT_ERROR** <br> Radius Request missing mandatory Radius userName\Identifier attribute.Verify that NPS is receiving RADIUS requests | This error usually reflects an installation issue. The NPS extension must be installed in NPS servers that can receive RADIUS requests. NPS servers that are installed as dependencies for services like RDG and RRAS don't receive radius requests. NPS Extension does not work when installed over such installations and errors out since it cannot read the details from the authentication request. |
35
36
|**REQUEST_MISSING_CODE**| Make sure that the password encryption protocol between the NPS and NAS servers supports the secondary authentication method that you're using. **PAP** supports all the authentication methods of Azure AD MFA in the cloud: phone call, one-way text message, mobile app notification, and mobile app verification code. **CHAPV2** and **EAP** support phone call and mobile app notification. |
Copy file name to clipboardExpand all lines: articles/azure-maps/set-drawing-options.md
+28-19Lines changed: 28 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Drawing tools module
3
3
titleSuffix: Microsoft Azure Maps
4
-
description: In this article, you'll learn how to set drawing options data using the Microsoft Azure Maps Web SDK
4
+
description: This article describes how to set drawing options data using the Microsoft Azure Maps Web SDK
5
5
author: dubiety
6
6
ms.author: yuchungchen
7
7
ms.date: 06/15/2023
@@ -11,20 +11,20 @@ ms.service: azure-maps
11
11
12
12
# Use the drawing tools module
13
13
14
-
The Azure Maps Web SDK provides a [drawing tools module]. This module makes it easy to draw and edit shapes on the map using an input device such as a mouse or touch screen. The core class of this module is the [drawing manager](/javascript/api/azure-maps-drawing-tools/atlas.drawing.drawingmanager#setoptions-drawingmanageroptions-). The drawing manager provides all the capabilities needed to draw and edit shapes on the map. It can be used directly, and it's integrated with a custom toolbar UI. You can also use the built-in [drawing toolbar](/javascript/api/azure-maps-drawing-tools/atlas.control.drawingtoolbar) class.
14
+
The Azure Maps Web SDK provides a [drawing tools module]. This module makes it easy to draw and edit shapes on the map using an input device such as a mouse or touch screen. The core class of this module is the [drawing manager]. The drawing manager provides all the capabilities needed to draw and edit shapes on the map. It can be used directly, and it's integrated with a custom toolbar UI. You can also use the built-in [drawing toolbar] class.
15
15
16
16
## Loading the drawing tools module in a webpage
17
17
18
-
1. Create a new HTML file and [implement the map as usual](./how-to-use-map-control.md).
18
+
1. Create a new HTML file and [implement the map as usual].
19
19
2. Load the Azure Maps drawing tools module. You can load it in one of two ways:
20
-
- Use the globally hosted, Azure Content Delivery Network version of the Azure Maps services module. Add reference to the JavaScript and CSS Style Sheet in the `<head>` element of the file:
20
+
- Use the globally hosted, Azure Content Delivery Network version of the Azure Maps services module. Add reference to the JavaScript and CSS in the `<head>` element of the file:
- Or, you can load the drawing tools module for the Azure Maps Web SDK source code locally by using the [azure-maps-drawing-tools](https://www.npmjs.com/package/azure-maps-drawing-tools) npm package, and then host it with your app. This package also includes TypeScript definitions. Use this command:
27
+
- Or, you can load the drawing tools module for the Azure Maps Web SDK source code locally by using the [azure-maps-drawing-tools] npm package, and then host it with your app. This package also includes TypeScript definitions. Use this command:
28
28
29
29
`npm install azure-maps-drawing-tools`
30
30
@@ -34,7 +34,7 @@ The Azure Maps Web SDK provides a [drawing tools module]. This module makes it e
34
34
import * as drawing from "azure-maps-drawing-tools";
35
35
```
36
36
37
-
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
37
+
You would also need to embed the CSS for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
38
38
39
39
To begin, install style-loader and css-loader:
40
40
@@ -67,7 +67,7 @@ The Azure Maps Web SDK provides a [drawing tools module]. This module makes it e
67
67
68
68
## Use the drawing manager directly
69
69
70
-
Once the drawing tools module is loaded in your application, you can enable drawing and editing capabilities using the [drawing manager](/javascript/api/azure-maps-drawing-tools/atlas.drawing.drawingmanager#setoptions-drawingmanageroptions-). You can specify options for the drawing manager while instantiating it or alternatively use the `drawingManager.setOptions()` function.
70
+
Once the drawing tools module is loaded in your application, you can enable drawing and editing capabilities using the [drawing manager]. You can specify options for the drawing manager while instantiating it or alternatively use the `drawingManager.setOptions()` function.
71
71
72
72
### Set the drawing mode
73
73
@@ -95,7 +95,7 @@ The following image is an example of drawing mode of the `DrawingManager`. Selec
95
95
The drawing manager supports three different ways of interacting with the map to draw shapes.
96
96
97
97
-`click` - Coordinates are added when the mouse or touch is clicked.
98
-
-`freehand` - Coordinates are added when the mouse or touch is dragged on the map.
98
+
-`freehand` - Coordinates are added when the mouse or touch is dragged on the map.
99
99
-`hybrid` - Coordinates are added when the mouse or touch is clicked or dragged.
100
100
101
101
The following code enables the polygon drawing mode and sets the type of drawing interaction that the drawing manager should adhere to `freehand`.
@@ -191,34 +191,43 @@ The following table lists the type of editing supported by different types of sh
191
191
192
192
## Next steps
193
193
194
-
Learn how to use additional features of the drawing tools module:
194
+
Learn how to use more features of the drawing tools module:
195
195
196
196
> [!div class="nextstepaction"]
197
-
> [Add a drawing toolbar](map-add-drawing-toolbar.md)
197
+
> [Add a drawing toolbar]
198
198
199
199
> [!div class="nextstepaction"]
200
-
> [Get shape data](map-get-shape-data.md)
200
+
> [Get shape data]
201
201
202
202
> [!div class="nextstepaction"]
203
-
> [React to drawing events](drawing-tools-events.md)
203
+
> [React to drawing events]
204
204
205
205
> [!div class="nextstepaction"]
206
-
> [Interaction types and keyboard shortcuts](drawing-tools-interactions-keyboard-shortcuts.md)
206
+
> [Interaction types and keyboard shortcuts]
207
207
208
208
Learn more about the classes and methods used in this article:
Copy file name to clipboardExpand all lines: articles/batch/batch-account-create-portal.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Create a Batch account in the Azure portal
3
3
description: Learn how to use the Azure portal to create and manage an Azure Batch account for running large-scale parallel workloads in the cloud.
4
4
ms.topic: how-to
5
-
ms.date: 04/03/2023
5
+
ms.date: 07/18/2023
6
6
ms.custom: subject-rbac-steps, devx-track-linux
7
7
---
8
8
@@ -120,12 +120,13 @@ For detailed steps, see [Assign Azure roles by using the Azure portal](../role-b
120
120
121
121
### Create a key vault
122
122
123
-
User subscription mode requires [Azure Key Vault](/azure/key-vault/general/overview). The key vault must be in the same subscription and region as the Batch account.
123
+
User subscription mode requires [Azure Key Vault](/azure/key-vault/general/overview). The key vault must be in the same subscription and region as the Batch account and use a [Vault Access Policy](/azure/key-vault/general/assign-access-policy).
124
124
125
125
To create a new key vault:
126
126
127
127
1. Search for and select **key vaults** from the Azure Search box, and then select **Create** on the **Key vaults** page.
128
128
1. On the **Create a key vault** page, enter a name for the key vault, and choose an existing resource group or create a new one in the same region as your Batch account.
129
+
1. On the **Access configuration** tab, select **Vault access policy** under **Permission model**.
129
130
1. Leave the remaining settings at default values, select **Review + create**, and then select **Create**.
130
131
131
132
### Create a Batch account in user subscription mode
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql/develop-tables-cetas.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ For dedicated SQL pool, CETAS usage and syntax, check the [CREATE EXTERNAL TABLE
29
29
30
30
When using serverless SQL pool, CETAS is used to create an external table and export query results to Azure Storage Blob or Azure Data Lake Storage Gen2.
31
31
32
-
For complete syntax, refer to [CREATE EXTERNAL TABLE AS SELECT (Transact-SQL)](/sql/t-sql/statements/create-external-data-source-transact-sql?view=azure-sqldw-latest&preserve-view=true).
32
+
For complete syntax, refer to [CREATE EXTERNAL TABLE AS SELECT (Transact-SQL)](/sql/t-sql/statements/create-external-table-as-select-transact-sql).
0 commit comments