Skip to content

Commit 6bb9865

Browse files
authored
Merge pull request #97643 from MicrosoftDocs/master
12/03 AM Publish
2 parents a4d9d66 + 5e64fc1 commit 6bb9865

File tree

66 files changed

+1996
-2968
lines changed

Some content is hidden

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

66 files changed

+1996
-2968
lines changed

.openpublishing.redirection.json

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29516,9 +29516,54 @@
2951629516
"redirect_url": "/azure/cognitive-services/speech/concepts",
2951729517
"redirect_document_id": false
2951829518
},
29519+
{
29520+
"source_path": "articles/cognitive-services/Bing-Image-Search/index.yml",
29521+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29522+
"redirect_document_id": false
29523+
},
29524+
{
29525+
"source_path": "articles/cognitive-services/Bing-Autosuggest/index.yml",
29526+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29527+
"redirect_document_id": false
29528+
},
29529+
{
29530+
"source_path": "articles/cognitive-services/Bing-Custom-Search/index.yml",
29531+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29532+
"redirect_document_id": false
29533+
},
29534+
{
29535+
"source_path": "articles/cognitive-services/Bing-Entities-Search/index.yml",
29536+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29537+
"redirect_document_id": false
29538+
},
29539+
{
29540+
"source_path": "articles/cognitive-services/bing-local-business-search/index.yml",
29541+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29542+
"redirect_document_id": false
29543+
},
29544+
{
29545+
"source_path": "articles/cognitive-services/Bing-News-Search/index.yml",
29546+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29547+
"redirect_document_id": false
29548+
},
29549+
{
29550+
"source_path": "articles/cognitive-services/Bing-Spell-Check/index.yml",
29551+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29552+
"redirect_document_id": false
29553+
},
29554+
{
29555+
"source_path": "articles/cognitive-services/Bing-Video-Search/index.yml",
29556+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29557+
"redirect_document_id": false
29558+
},
29559+
{
29560+
"source_path": "articles/cognitive-services/bing-visual-search/index.yml",
29561+
"redirect_url": "/azure/cognitive-services/Bing-Web-Search",
29562+
"redirect_document_id": false
29563+
},
2951929564
{
2952029565
"source_path": "articles/cognitive-services/Bing-Image-Search/search-the-web.md",
29521-
"redirect_url": "/azure/cognitive-services/bing-image-search",
29566+
"redirect_url": "/azure/cognitive-services/Bing-Image-Search/overview",
2952229567
"redirect_document_id": false
2952329568
},
2952429569
{
@@ -29528,7 +29573,7 @@
2952829573
},
2952929574
{
2953029575
"source_path": "articles/cognitive-services/Bing-Web-Search/search-the-web.md",
29531-
"redirect_url": "/azure/cognitive-services/bing-web-search",
29576+
"redirect_url": "/azure/cognitive-services/bing-web-search/overview",
2953229577
"redirect_document_id": false
2953329578
},
2953429579
{

articles/active-directory/develop/v2-admin-consent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.workload: identity
1414
ms.tgt_pltfrm: na
1515
ms.devlang: na
1616
ms.topic: conceptual
17-
ms.date: 09/26/2019
17+
ms.date: 12/3/2019
1818
ms.author: ryanwi
1919
ms.reviewer: hirsin
2020
ms.custom: aaddev
@@ -49,7 +49,7 @@ When you're ready to request permissions from your organization's admin, you can
4949

5050
| Parameter | Condition | Description |
5151
|--------------:|--------------:|:-----------------------------------------------------------------------------------------:|
52-
| `tenant` | Required | The directory tenant that you want to request permission from. Can be provided in GUID or friendly name format OR generically referenced with `common` as seen in the example. |
52+
| `tenant` | Required | The directory tenant that you want to request permission from. Can be provided in GUID or friendly name format OR generically referenced with `organizations` as seen in the example. Do not use 'common', as personal accounts cannot provide admin consent except in the context of a tenant. To ensure best compatibility with personal accounts that manage tenants, use the tenant ID when possible. |
5353
| `client_id` | Required | The **Application (client) ID** that the [Azure portal – App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) experience assigned to your app. |
5454
| `redirect_uri` | Required |The redirect URI where you want the response to be sent for your app to handle. It must exactly match one of the redirect URIs that you registered in the app registration portal. |
5555
| `state` | Recommended | A value included in the request that will also be returned in the token response. It can be a string of any content you want. Use the state to encode information about the user's state in the app before the authentication request occurred, such as the page or view they were on. |

articles/active-directory/hybrid/how-to-connect-password-hash-synchronization.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,9 @@ It is typical to force a user to change their password during their first logon,
118118

119119
The temporary password functionality helps to ensure that the transfer of ownership of the credential is completed on first use, to minimize the duration of time in which more than one individual has knowledge of that credential.
120120

121-
To support temporary passwords in Azure AD for synchronized users, you can enable the *ForcePasswordResetOnLogonFeature* feature, by running the following command on your Azure AD Connect server, replacing <AAD Connector Name> with the connector name specific to your environment:
121+
To support temporary passwords in Azure AD for synchronized users, you can enable the *ForcePasswordResetOnLogonFeature* feature, by running the following command on your Azure AD Connect server:
122122

123-
`Set-ADSyncAADCompanyFeature -ConnectorName "<AAD Connector name>" -ForcePasswordResetOnLogonFeature $true`
124-
125-
You can use the following command to determine the connector name:
126-
127-
`(Get-ADSyncConnector | where{$_.ListName -eq "Windows Azure Active Directory (Microsoft)"}).Name`
123+
`Set-ADSyncAADCompanyFeature  -ForcePasswordResetOnLogonFeature $true`
128124

129125
Caveat: Forcing a user to change their password on next logon requires a password change at the same time. AD Connect will not pick up the force password change flag by itself, it is supplemental to the detected password change that occurs during password hash sync.
130126

articles/active-directory/hybrid/reference-connect-sync-attributes-synchronized.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ These attributes are written back from Azure AD to on-premises Active Directory
425425
| msExchSafeRecipientsHash| ms-Exch-SafeRecipientsHash |X | | |Filtering: Writes back on-premises filtering and online safe and blocked sender data from clients. |
426426
| msExchSafeSendersHash| ms-Exch-SafeSendersHash |X | | |Filtering: Writes back on-premises filtering and online safe and blocked sender data from clients. |
427427
| msExchUCVoiceMailSettings| ms-Exch-UCVoiceMailSettings |X | | |Enable Unified Messaging (UM) - Online voice mail: Used by Microsoft Lync Server integration to indicate to Lync Server on-premises that the user has voice mail in online services. |
428-
| msExchUserHoldPolicies| ms-Exc-hUserHoldPolicies |X | | |Litigation Hold: Enables cloud services to determine which users are under Litigation Hold. |
428+
| msExchUserHoldPolicies| ms-Exch-UserHoldPolicies |X | | |Litigation Hold: Enables cloud services to determine which users are under Litigation Hold. |
429429
| proxyAddresses| proxyAddresses |X |X |X |Only the x500 address from Exchange Online is inserted. |
430430
| publicDelegates| ms-Exch-Public-Delegates |X | | |Allows an Exchange Online mailbox to be granted SendOnBehalfTo rights to users with on-premises Exchange mailbox. Requires Azure AD Connect build 1.1.552.0 or after. |
431431

95.1 KB
Loading
535 KB
Loading

articles/automation/shared-resources/modules.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ You can use the [New-AzureRmAutomationModule](/powershell/module/azurerm.automat
2929
New-AzureRmAutomationModule -Name <ModuleName> -ContentLinkUri <ModuleUri> -ResourceGroupName <ResourceGroupName> -AutomationAccountName <AutomationAccountName>
3030
```
3131

32+
You can also use the same cmdlet to import a module from PowerShell Gallery directly. Make sure to grab **ModuleName** and **ModuleVersion** from [PowerShell Gallery](https://www.powershellgallery.com).
33+
34+
```azurepowershell-interactive
35+
$moduleName = <ModuleName>
36+
$moduleVersion = <ModuleVersion>
37+
New-AzAutomationModule -AutomationAccountName <AutomationAccountName> -ResourceGroupName <ResourceGroupName> -Name $moduleName -ContentLinkUri "https://www.powershellgallery.com/api/v2/package/$moduleName/$moduleVersion"
38+
```
39+
3240
### Azure portal
3341

3442
In the Azure portal, navigate to your Automation Account and select **Modules** under **Shared Resources**. Click **+ Add a module**. Select a **.zip** file that contains your module and click **Ok** to start to import process.

articles/automation/troubleshoot/update-agent-issues-linux.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
---
2-
title: Understand the Linux agent check results in Azure Update Management
3-
description: Learn how to troubleshoot issues with the Update Management agent.
2+
title: Understand the Linux Hybrid Runbook Worker health in Azure Update Management
3+
description: Learn how to troubleshoot issues with the Hybrid Runbook Worker on Linux that supports Update Management.
44
services: automation
5-
author: bobbytreed
6-
ms.author: robreed
7-
ms.date: 04/22/2019
5+
author: mgoedtel
6+
ms.author: magoedte
7+
ms.date: 12/03/2019
88
ms.topic: conceptual
99
ms.service: automation
1010
ms.subservice: update-management
1111
manager: carmonm
1212
---
1313

14-
# Understand the Linux agent check results in Update Management
14+
# Understand the Linux Hybrid Runbook Worker health in Update Management
1515

16-
There may be many reasons your machine isn't showing **Ready** in Update Management. In Update Management, you can check the health of a Hybrid Worker agent to determine the underlying problem. This article discusses how to run the troubleshooter for Azure machines from the Azure portal and Non-Azure machines in the [offline scenario](#troubleshoot-offline).
16+
There may be many reasons your machine isn't showing **Ready** in Update Management. In Update Management, you can check the health of a Hybrid Runbook Worker agent to determine the underlying problem. This article discusses how to run the troubleshooter for Azure machines from the Azure portal and non-Azure machines in the [offline scenario](#troubleshoot-offline).
1717

1818
The following list are the three readiness states a machine can be in:
1919

20-
* **Ready** - The update agent is deployed and was last seen less than 1 hour ago.
21-
* **Disconnected** - The update agent is deployed and was last seen over 1 hour ago.
22-
* **Not configured** - The update agent isn't found or hasn't finished onboarding.
20+
* **Ready** - The Hybrid Runbook Worker is deployed and was last seen less than 1 hour ago.
21+
* **Disconnected** - The Hybrid Runbook Worker is deployed and was last seen over 1 hour ago.
22+
* **Not configured** - The Hybrid Runbook Worker isn't found or hasn't finished onboarding.
2323

2424
> [!NOTE]
2525
> There may be a slight delay between what the Azure portal shows and the current state of the machine.
2626
2727
## Start the troubleshooter
2828

29-
For Azure machines, clicking the **Troubleshoot** link under the **Update Agent Readiness** column in the portal launches the **Troubleshoot Update Agent** page. For Non-Azure machines, the link brings you to this article. See the offline instructions to troubleshoot a Non-Azure machine.
29+
For Azure machines, clicking the **Troubleshoot** link under the **Update Agent Readiness** column in the portal launches the **Troubleshoot Update Agent** page. For non-Azure machines, the link brings you to this article. See the offline instructions to troubleshoot a non-Azure machine.
3030

3131
![vm list page](../media/update-agent-issues-linux/vm-list.png)
3232

3333
> [!NOTE]
3434
> The checks require the VM to be running. If the VM is not running you are presented with a button to **Start the VM**.
3535
36-
On the **Troubleshoot Update Agent** page, click **Run Checks**, to start the troubleshooter. The troubleshooter uses [Run command](../../virtual-machines/linux/run-command.md) to run a script on the machine to verify the dependencies that the agent has. When the troubleshooter is complete, it returns the result of the checks.
36+
On the **Troubleshoot Update Agent** page, click **Run Checks**, to start the troubleshooter. The troubleshooter uses [Run command](../../virtual-machines/linux/run-command.md) to run a script on the machine to verify the dependencies. When the troubleshooter is complete, it returns the result of the checks.
3737

3838
![Troubleshoot page](../media/update-agent-issues-linux/troubleshoot-page.png)
3939

@@ -45,7 +45,7 @@ When complete, the results are returned in the window. The check sections provid
4545

4646
### Operating system
4747

48-
The OS check, verifies if the Hybrid Runbook Worker is running one of the following Operating Systems:
48+
The operating system check verifies if the Hybrid Runbook Worker is running one of the following Operating Systems:
4949

5050
|Operating system |Notes |
5151
|---------|---------|
@@ -56,14 +56,14 @@ The OS check, verifies if the Hybrid Runbook Worker is running one of the follow
5656

5757
## Monitoring agent service health checks
5858

59-
### OMS agent
59+
### Log Analytics agent
6060

61-
This check ensures that the OMS Agent for Linux is installed. For instructions on how to install it, see [Install the agent for Linux](../../azure-monitor/learn/quick-collect-linux-computer.md#install-the-agent-for-linux
61+
This check ensures that the Log Analytics agent for Linux is installed. For instructions on how to install it, see [Install the agent for Linux](../../azure-monitor/learn/quick-collect-linux-computer.md#install-the-agent-for-linux
6262
).
6363

64-
### OMS Agent status
64+
### Log Analytics agent status
6565

66-
This check ensures that the OMS Agent for Linux is running. If the agent isn't running, you can run the following command to attempt to restart it. For more information on troubleshooting the agent, see [Linux Hybrid Runbook worker troubleshooting](hybrid-runbook-worker.md#linux)
66+
This check ensures that the Log Analytics agent for Linux is running. If the agent isn't running, you can run the following command to attempt to restart it. For more information on troubleshooting the agent, see [Linux Hybrid Runbook worker troubleshooting](hybrid-runbook-worker.md#linux)
6767

6868
```bash
6969
sudo /opt/microsoft/omsagent/bin/service_control restart
@@ -75,7 +75,7 @@ This check determines if the agent is reporting to multiple workspaces. Multi-ho
7575

7676
### Hybrid Runbook Worker
7777

78-
This check verifies if the OMS Agent for Linux has the Hybrid Runbook Worker package. This package is required for Update Management to work.
78+
This check verifies if the Log Analytics agent for Linux has the Hybrid Runbook Worker package. This package is required for Update Management to work.
7979

8080
### Hybrid Runbook Worker status
8181

@@ -95,7 +95,7 @@ This check makes sure that the machine has access to the internet.
9595

9696
### Registration endpoint
9797

98-
This check determines if the agent can properly communicate with the agent service.
98+
This check determines if the Hybrid Runbook Worker can properly communicate with Azure Automation the Log Analytics workspace.
9999

100100
Proxy and firewall configurations must allow the Hybrid Runbook Worker agent to communicate with the registration endpoint. For a list of addresses and ports to open, see [Network planning for Hybrid Workers](../automation-hybrid-runbook-worker.md#network-planning)
101101

@@ -174,5 +174,4 @@ Passed: TCP test for {ods.systemcenteradvisor.com} (port 443) succeeded
174174

175175
## Next steps
176176

177-
To troubleshoot additional issues with your Hybrid Runbook Workers, see [Troubleshoot - Hybrid Runbook Workers](hybrid-runbook-worker.md)
178-
177+
To troubleshoot additional issues with your Hybrid Runbook Workers, see [Troubleshoot - Hybrid Runbook Workers](hybrid-runbook-worker.md)

articles/automation/troubleshoot/update-agent-issues.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
---
2-
title: Understand the Windows agent check results in Azure Update Management
3-
description: Learn how to troubleshoot issues with the Update Management agent.
2+
title: Understand the Windows Hybrid Runbook Worker health in Azure Update Management
3+
description: Learn how to troubleshoot issues with the Hybrid Runbook Worker on Windows that supports Update Management.
44
services: automation
55
author: mgoedtel
66
ms.author: magoedte
7-
ms.date: 11/25/2019
7+
ms.date: 12/03/2019
88
ms.topic: conceptual
99
ms.service: automation
1010
ms.subservice: update-management
1111
manager: carmonm
1212
---
1313

14-
# Understand the Windows agent check results in Update Management
14+
# Understand the Windows Hybrid Runbook Worker health in Update Management
1515

16-
There may be many reasons your machine isn't showing **Ready** in Update Management. In Update Management, you can check the health of a Hybrid Worker agent to determine the underlying problem. This article discusses how to run the troubleshooter for Azure machines from the Azure portal and Non-Azure machines in the [offline scenario](#troubleshoot-offline).
16+
There may be many reasons your machine isn't showing **Ready** in Update Management. In Update Management, you can check the health of a Hybrid Runbook Worker agent to determine the underlying problem. This article discusses how to run the troubleshooter for Azure machines from the Azure portal and non-Azure machines in the [offline scenario](#troubleshoot-offline).
1717

1818
The following list are the three readiness states a machine can be in:
1919

20-
* **Ready** - The update agent is deployed and was last seen less than 1 hour ago.
21-
* **Disconnected** - The update agent is deployed and was last seen over 1 hour ago.
22-
* **Not configured** - The update agent isn't found or hasn't finished onboarding.
20+
* **Ready** - The Hybrid Runbook Worker is deployed and was last seen less than 1 hour ago.
21+
* **Disconnected** - The Hybrid Runbook Worker is deployed and was last seen over 1 hour ago.
22+
* **Not configured** - The Hybrid Runbook Worker isn't found or hasn't finished onboarding.
2323

2424
> [!NOTE]
2525
> There may be a slight delay between what the Azure portal shows and the current state of the machine.
2626
2727
## Start the troubleshooter
2828

29-
For Azure machines, clicking the **Troubleshoot** link under the **Update Agent Readiness** column in the portal launches the **Troubleshoot Update Agent** page. For Non-Azure machines, the link brings you to this article. See the [offline instructions](#troubleshoot-offline) to troubleshoot a Non-Azure machine.
29+
For Azure machines, clicking the **Troubleshoot** link under the **Update Agent Readiness** column in the portal launches the **Troubleshoot Update Agent** page. For non-Azure machines, the link brings you to this article. See the [offline instructions](#troubleshoot-offline) to troubleshoot a non-Azure machine.
3030

3131
![Update management list of virtual machines](../media/update-agent-issues/vm-list.png)
3232

3333
> [!NOTE]
34-
> To check the health of an agent, the VM must be running. If the VM isn't running, a **Start the VM** button appears.
34+
> To check the health of the Hybrid Runbook Worker, the VM must be running. If the VM isn't running, a **Start the VM** button appears.
3535
36-
On the **Troubleshoot Update Agent** page, select **Run checks** to start the troubleshooter. The troubleshooter uses [Run Command](../../virtual-machines/windows/run-command.md) to run a script on the machine to verify agent dependencies. When the troubleshooter is finished, it returns the result of the checks.
36+
On the **Troubleshoot Update Agent** page, select **Run checks** to start the troubleshooter. The troubleshooter uses [Run Command](../../virtual-machines/windows/run-command.md) to run a script on the machine to verify dependencies. When the troubleshooter is finished, it returns the result of the checks.
3737

3838
![Troubleshoot Update Agent page](../media/update-agent-issues/troubleshoot-page.png)
3939

@@ -45,7 +45,7 @@ Results are shown on the page when they're ready. The checks sections show what'
4545

4646
### Operating system
4747

48-
The operating system check verifies whether the Hybrid Runbook Worker is running one of these operating systems:
48+
The operating system check verifies whether the Hybrid Runbook Worker is running one of the following operating systems:
4949

5050
|Operating system |Notes |
5151
|---------|---------|
@@ -200,5 +200,4 @@ CheckResultMessageArguments : {}
200200

201201
## Next steps
202202

203-
To troubleshoot more issues with your Hybrid Runbook Workers, see [Troubleshoot Hybrid Runbook Workers](hybrid-runbook-worker.md).
204-
203+
To troubleshoot more issues with your Hybrid Runbook Workers, see [Troubleshoot Hybrid Runbook Workers](hybrid-runbook-worker.md).

0 commit comments

Comments
 (0)