Skip to content

Commit 56469df

Browse files
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into us1679050dt
2 parents d737b7d + 9e5f8f8 commit 56469df

File tree

258 files changed

+7578
-222
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+7578
-222
lines changed

articles/active-directory-domain-services/tutorial-configure-password-hash-sync.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ With Azure AD Connect installed and configured to synchronize with Azure AD, now
6666

6767
In this example screenshot, the following connectors are used:
6868

69-
* The Azure AD connector is named *aaddscontoso.onmicrosoft.com - AAD*
69+
* The Azure AD connector is named *contoso.onmicrosoft.com - AAD*
7070
* The on-premises AD DS connector is named *onprem.contoso.com*
7171

7272
1. Copy and paste the following PowerShell script to the computer with Azure AD Connect installed. The script triggers a full password sync that includes legacy password hashes. Update the `$azureadConnector` and `$adConnector` variables with the connector names from the previous step.

articles/active-directory/authentication/howto-sspr-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Audit logs for registration and password reset are available for 30 days. If sec
340340

341341
## Next steps
342342

343-
* To get started deploying SSPR, see [Enable Azure AD self-service password reset](https://docs.microsoft.com/azure/active-directory/authentication/tutorial-enable-sspr.md)
343+
* To get started deploying SSPR, see [Enable Azure AD self-service password reset](tutorial-enable-sspr.md)
344344

345345
* [Consider implementing Azure AD password protection](https://docs.microsoft.com/azure/active-directory/authentication/concept-password-ban-bad)
346346

articles/active-directory/authentication/howto-sspr-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For machines running Windows 7, 8, 8.1, and 10 you can enable users to reset the
4040
- The combination of the following specific three settings can cause this feature to not work.
4141
- Interactive logon: Do not require CTRL+ALT+DEL = Disabled
4242
- DisableLockScreenAppNotifications = 1 or Enabled
43-
- IsContentDeliveryPolicyEnforced = 1 or True
43+
- Windows SKU isn't Home or Professional edition
4444

4545
## Windows 10 password reset
4646

articles/active-directory/saas-apps/catchpoint-tutorial.md

Lines changed: 89 additions & 87 deletions
Large diffs are not rendered by default.

articles/automation/automation-tutorial-update-management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article provides an overview of how to use Azure Automation Up
44
services: automation
55
ms.subservice: update-management
66
ms.topic: tutorial
7-
ms.date: 03/04/2020
7+
ms.date: 04/06/2020
88
ms.custom: mvc
99
---
1010
# Manage updates and patches for your Azure VMs
@@ -117,7 +117,7 @@ Under **New update deployment**, specify the following information:
117117

118118
For descriptions of the classification types, see [Update classifications](automation-view-update-assessments.md#update-classifications).
119119

120-
* **Updates to include/exclude** - Opens the Include/Exclude page. Updates to be included or excluded are on separate tabs.
120+
* **Updates to include/exclude** - Opens the Include/Exclude page. Updates to be included or excluded are on separate tabs by specifying the KB Article ID numbers. When specifying one or more ID numbers, you need to remove or un-check all classifications with the update deployment. This ensures that no other updates are included in your update package when specifying update IDs.
121121

122122
> [!NOTE]
123123
> It's important to know that exclusions override inclusions. For instance, if you define an exclusion rule of `*`, Update Management installs no patches or packages, as they're all excluded. Excluded patches still show as missing from the machine. For Linux machines, if you include a package that has a dependent package that has been excluded, Update Management doesn't install the main package.

articles/automation/automation-update-management-query-logs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Query Azure Update Management logs
33
description: This article describes how to query the logs for Update Management in your Log Analytics workspace.
44
services: automation
55
ms.subservice: update-management
6-
ms.date: 03/31/2020
6+
ms.date: 04/06/2020
77
ms.topic: conceptual
88
---
99
# Query update records for Update Management in Azure Monitor Logs
@@ -106,7 +106,7 @@ A record with a type of `UpdateRunProgress` is created that provides update depl
106106
| CorrelationId | Unique identifier of the runbook job run for the update. |
107107
| EndTime | The time when the synchronization process ended. |
108108
| ErrorResult | Windows Update error code generated if an update fails to install. |
109-
| InstallationStatus | The possible installation states of an update on the client computer, *In progress*, *Succeeded*, *Partially failed*. |
109+
| InstallationStatus | The possible installation states of an update on the client computer,<br> *NotStarted* - job not triggered yet.<br> *FailedToStart* - unable to start the job on machine.<br> *Failed* - job started but failed with an exception.<br> *InProgress* - job in progress.<br> *MaintenanceWindowExceeded* - if execution was remaining but maintenance window interval reached.<br> *Succeeded* - job succeeded.<br> *InstallFailed* - update failed to install successfully.<br> *NotIncluded*<br> *Excluded* |
110110
| KBID | Knowledge base article ID for the Windows update. |
111111
| ManagementGroupName | Name of the Operations Manager management group or Log Analytics workspace. |
112112
| OSType | Specifies the type of operating system, *Windows* or *Linux*. |

articles/azure-resource-manager/templates/child-resource-name-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 08/26/2019
88

99
Child resources are resources that exist only within the context of another resource. For example, a [virtual machine extension](/azure/templates/microsoft.compute/2019-03-01/virtualmachines/extensions) can't exist without a [virtual machine](/azure/templates/microsoft.compute/2019-03-01/virtualmachines). The extension resource is a child of the virtual machine.
1010

11-
In a Resource Manger template, you can specify the child resource either within the parent resource or outside of the parent resource. The following example shows the child resource included within the resources property of the parent resource.
11+
In a Resource Manager template, you can specify the child resource either within the parent resource or outside of the parent resource. The following example shows the child resource included within the resources property of the parent resource.
1212

1313
```json
1414
"resources": [

articles/azure-resource-manager/templates/deployment-script-template.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: azure-resource-manager
55
author: mumian
66
ms.service: azure-resource-manager
77
ms.topic: conceptual
8-
ms.date: 03/30/2020
8+
ms.date: 04/06/2020
99
ms.author: jgao
1010

1111
---
@@ -29,6 +29,8 @@ The benefits of deployment script:
2929
- Allow passing command-line arguments to the script.
3030
- Can specify script outputs and pass them back to the deployment.
3131

32+
The deployment script resource is only available in the regions where Azure Container Instance is available. See [Resource availability for Azure Container Instances in Azure regions](../../container-instances/container-instances-region-availability.md).
33+
3234
> [!IMPORTANT]
3335
> Two deployment script resources, a storage account and a container instance, are created in the same resource group for script execution and troubleshooting. These resources are usually deleted by the script service when the deployment script execution gets in a terminal state. You are billed for the resources until the resources are deleted. To learn more, see [Clean-up deployment script resources](#clean-up-deployment-script-resources).
3436
@@ -185,6 +187,8 @@ To see an example, select [here](https://github.com/Azure/azure-docs-json-sample
185187

186188
The external script files must be accessible. To secure your script files that are stored in Azure storage accounts, see [Tutorial: Secure artifacts in Azure Resource Manager template deployments](./template-tutorial-secure-artifacts.md).
187189

190+
You are responsible for ensuring the integrity of the scripts that are referenced by deployment script, either **PrimaryScriptUri** or **SupportingScriptUris**. Reference only scripts that you trust.
191+
188192
## Use supporting scripts
189193

190194
You can separate complicated logics into one or more supporting script files. The `supportingScriptURI` property allows you to provide an array of URIs to the supporting script files if needed:

articles/blockchain/service/limits.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Azure Blockchain Service limits
33
description: Overview of the service and functional limits in Azure Blockchain Service
4-
ms.date: 03/30/2020
4+
ms.date: 04/02/2020
55
ms.topic: conceptual
66
ms.reviewer: ravastra
77
#Customer intent: As an operator or architect, I want to understand service and functional limits for Azure Blockchain Service.
@@ -31,7 +31,6 @@ Changing the pricing tier between basic and standard after member creation is no
3131
The maximum amount of storage that can be used per node for ledger data and logs is 1.8 terabytes.
3232

3333
Decreasing ledger and log storage size is not supported.
34-
3534
## Consortium limits
3635

3736
* **Consortium and member names must be unique** from other consortium and member names in the Azure Blockchain Service.
@@ -56,6 +55,12 @@ Decreasing ledger and log storage size is not supported.
5655

5756
For more information on the patching, updates, and ledger versions available in Azure Blockchain Service, see [Patching, updates, and versions](ledger-versions.md).
5857

58+
## Performance
59+
60+
Do not use *eth.estimate* gas function for each transaction submission. The *eth.estimate* function is memory intensive. Calling the function multiple times reduces transactions per second drastically.
61+
62+
If possible, use a conservative gas value for submitting transactions and minimize the use of *eth.estimate*.
63+
5964
## Next steps
6065

6166
Learn more about policies regarding systems patching and upgrades - [Patching, updates, and versions](ledger-versions.md).

articles/cognitive-services/Speech-Service/index.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ highlightedContent:
2222
- title: What is the Speech service?
2323
itemType: overview
2424
url: overview.md
25+
- title: About the Speech SDK
26+
itemType: overview
27+
url: speech-sdk.md
2528
- title: Speech SDK release notes
2629
itemType: whats-new
2730
url: releasenotes.md
28-
- title: Language support in Speech services
31+
- title: Language support in the Speech service
2932
itemType: reference
3033
url: language-support.md
31-
- title: Create a Speech services resource
32-
itemType: how-to-guide
33-
url: get-started.md
3434

3535
conceptualContent:
3636
items:

0 commit comments

Comments
 (0)