Skip to content

Commit cf3a75c

Browse files
committed
Merge branch 'master' into AzureIoTTools
2 parents 2ccd66d + 0f03e92 commit cf3a75c

File tree

4 files changed

+156
-9
lines changed

4 files changed

+156
-9
lines changed

articles/active-directory/devices/device-management-azure-portal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ This option is a premium edition capability available through products such as A
6767
- **Require Multi-Factor Auth to join devices** - You can choose whether users are required to provide an additional authentication factor to join their device to Azure AD. The default is **No**. We recommend requiring multi-factor authentication when registering a device. Before you enable multi-factor authentication for this service, you must ensure that multi-factor authentication is configured for the users that register their devices. For more information on different Azure multi-factor authentication services, see [getting started with Azure multi-factor authentication](../authentication/concept-mfa-whichversion.md).
6868

6969
> [!NOTE]
70-
> **Require Multi-Factor Auth to join devices** setting does not apply to hybrid Azure AD joined devices.
70+
> **Require Multi-Factor Auth to join devices** setting applies to devices that are either Azure AD joined or Azure AD registered. This setting does not apply to hybrid Azure AD joined devices.
7171
72-
- **Maximum number of devices** - This setting enables you to select the maximum number of devices that a user can have in Azure AD. If a user reaches this quota, they are not be able to add additional devices until one or more of the existing devices are removed. The device quota is counted for all devices that are either Azure AD joined or Azure AD registered today. The default value is **20**.
72+
- **Maximum number of devices** - This setting enables you to select the maximum number of Azure AD joined or Azure AD registered devices that a user can have in Azure AD. If a user reaches this quota, they are not be able to add additional devices until one or more of the existing devices are removed. The default value is **20**.
7373

7474
> [!NOTE]
75-
> **Maximum number of devices** setting does not apply to hybrid Azure AD joined devices.
75+
> **Maximum number of devices** setting applies to devices that are either Azure AD joined or Azure AD registered. This setting does not apply to hybrid Azure AD joined devices.
7676
7777
- **Users may sync settings and app data across devices** - By default, this setting is set to **NONE**. Selecting specific users or groups or ALL allows the user’s settings and app data to sync across their Windows 10 devices. Learn more on how sync works in Windows 10.
7878
This option is a premium capability available through products such as Azure AD Premium or the Enterprise Mobility Suite (EMS).

articles/backup/backup-azure-delete-vault.md

Lines changed: 146 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: dcurwin
66
manager: carmonm
77
ms.service: backup
88
ms.topic: conceptual
9-
ms.date: 07/29/2019
9+
ms.date: 09/10/2019
1010
ms.author: dacurwin
1111
---
1212
# Delete an Azure Backup Recovery Services vault
@@ -94,8 +94,6 @@ First, read the **[Before you start](#before-you-start)** section to understand
9494
4. Select the consent check box, and then select **Delete**.
9595

9696

97-
98-
9997
5. Check the **Notification** icon ![delete backup data](./media/backup-azure-delete-vault/messages.png). After the operation finishes, the service displays the message: *Stopping backup and deleting backup data for "Backup Item."* *Successfully completed the operation*.
10098
6. Select **Refresh** on the **Backup Items** menu, to make sure the backup item is deleted.
10199

@@ -170,6 +168,151 @@ After you delete the on-premises backup items, follow the next steps from the po
170168

171169
4. Select **Yes** to verify that you want to delete the vault. The vault is deleted. The portal returns to the **New** service menu.
172170

171+
## Delete the Recovery Services vault by using PowerShell
172+
173+
First, read the **[Before you start](#before-you-start)** section to understand the dependencies and vault deletion process.
174+
175+
To stop protection and delete the backup data:
176+
177+
- If you are using SQL in Azure VMs backup and enabled auto-protection for SQL instances, first disable the auto-protection.
178+
179+
```PowerShell
180+
Disable-AzRecoveryServicesBackupAutoProtection
181+
[-InputItem] <ProtectableItemBase>
182+
[-BackupManagementType] <BackupManagementType>
183+
[-WorkloadType] <WorkloadType>
184+
[-PassThru]
185+
[-VaultId <String>]
186+
[-DefaultProfile <IAzureContextContainer>]
187+
[-WhatIf]
188+
[-Confirm]
189+
[<CommonParameters>]
190+
```
191+
192+
[Learn more](https://docs.microsoft.com/powershell/module/az.recoveryservices/disable-azrecoveryservicesbackupautoprotection?view=azps-2.6.0) on how to disable protection for an Azure Backup-protected item
193+
194+
- Stop protection and delete data for all backup-protected items in cloud (ex. laaS VM, Azure File Share etc.):
195+
196+
```PowerShell
197+
Disable-AzRecoveryServicesBackupProtection
198+
[-Item] <ItemBase>
199+
[-RemoveRecoveryPoints]
200+
[-Force]
201+
[-VaultId <String>]
202+
[-DefaultProfile <IAzureContextContainer>]
203+
[-WhatIf]
204+
[-Confirm]
205+
[<CommonParameters>]
206+
```
207+
[Learn more](https://docs.microsoft.com/powershell/module/az.recoveryservices/disable-azrecoveryservicesbackupprotection?view=azps-2.6.0&viewFallbackFrom=azps-2.5.0) about disables protection for a Backup-protected item.
208+
209+
- For on-premises Files and Folders protected using Azure Backup Agent (MARS) backing up to Azure, use the following PowerShell command to delete the backed-up data from each MARS PowerShell module:
210+
211+
```
212+
Get-OBPolicy | Remove-OBPolicy -DeleteBackup -SecurityPIN <Security Pin>
213+
```
214+
215+
Post which the following prompt would appear:
216+
217+
*Microsoft Azure Backup Are you sure you want to remove this backup policy? Deleted backup data will be retained for 14 days. After that time, backup data will be permanently deleted. <br/>
218+
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"):*
219+
220+
221+
- For on-premises machines protected using MABS (Microsoft Azure Backup Server) or DPM to Azure (System Center Data Protection Manager), use the following command to delete the backed up data in Azure.
222+
223+
```
224+
Get-OBPolicy | Remove-OBPolicy -DeleteBackup -SecurityPIN <Security Pin>
225+
```
226+
227+
Post which the following prompt would appear:
228+
229+
*Microsoft Azure Backup
230+
Are you sure you want to remove this backup policy? Deleted backup data will be retained for 14 days. After that time, backup data will be permanently deleted. <br/>
231+
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"):*
232+
233+
After deleting the backed up data, un-register any on-premises containers and management servers.
234+
235+
- For on-premises Files and Folders protected using Azure Backup Agent (MARS) backing up to Azure:
236+
237+
```PowerShell
238+
Unregister-AzRecoveryServicesBackupContainer
239+
[-Container] <ContainerBase>
240+
[-PassThru]
241+
[-VaultId <String>]
242+
[-DefaultProfile <IAzureContextContainer>]
243+
[-WhatIf]
244+
[-Confirm]
245+
[<CommonParameters>]
246+
```
247+
[Learn more](https://docs.microsoft.com/powershell/module/az.recoveryservices/unregister-azrecoveryservicesbackupcontainer?view=azps-2.6.0) about un-registering a Windows Server or other container from the vault.
248+
249+
- For on-premises machines protected using MABS (Microsoft Azure Backup Server) or DPM to Azure (System Center Data Protection Manage:
250+
251+
```PowerShell
252+
Unregister-AzRecoveryServicesBackupManagementServer
253+
[-AzureRmBackupManagementServer] <BackupEngineBase>
254+
[-PassThru]
255+
[-VaultId <String>]
256+
[-DefaultProfile <IAzureContextContainer>]
257+
[-WhatIf]
258+
[-Confirm]
259+
[<CommonParameters>]
260+
```
261+
262+
[Learn more](https://docs.microsoft.com/powershell/module/az.recoveryservices/unregister-azrecoveryservicesbackupcontainer?view=azps-2.6.0) about un-registering a Backup management container from the vault.
263+
264+
After permanently deleting backed up data and un-registering all containers, proceed to delete the vault.
265+
266+
To delete a Recovery Services vault:
267+
268+
```PowerShell
269+
Remove-AzRecoveryServicesVault
270+
-Vault <ARSVault>
271+
[-DefaultProfile <IAzureContextContainer>]
272+
[-WhatIf]
273+
[-Confirm]
274+
[<CommonParameters>]
275+
```
276+
277+
[Learn more](https://docs.microsoft.com/powershell/module/az.recoveryservices/remove-azrecoveryservicesvault) about deleting a recovery services vault.
278+
279+
## Delete the Recovery Services vault by using CLI
280+
281+
First, read the **[Before you start](#before-you-start)** section to understand the dependencies and vault deletion process.
282+
283+
> [!NOTE]
284+
> Currently, Azure Backup CLI supports managing only Azure VM backups, so the following command to delete the vault works only if the vault contains Azure VM backups. You cannot delete a vault using Azure Backup CLI, if the vault contains any backup item of type other than Azure VMs.
285+
286+
To delete existing Recovery services vault, perform the below:
287+
288+
- To stop protection and delete the backup data
289+
290+
```CLI
291+
az backup protection disable --container-name
292+
--item-name
293+
[--delete-backup-data {false, true}]
294+
[--ids]
295+
[--resource-group]
296+
[--subscription]
297+
[--vault-name]
298+
[--yes]
299+
```
300+
301+
For more information, refer to this [article](https://docs.microsoft.com/cli/azure/backup/protection?view=azure-cli-latest#az-backup-protection-disable.).
302+
303+
- Delete an existing Recovery services vault:
304+
305+
```CLI
306+
az backup vault delete [--force]
307+
[--ids]
308+
[--name]
309+
[--resource-group]
310+
[--subscription]
311+
[--yes]
312+
```
313+
314+
For more information, refer to this [article](https://docs.microsoft.com/cli/azure/backup/vault?view=azure-cli-latest)
315+
173316
## Delete the Recovery Services vault by using Azure Resource Manager
174317
175318
This option to delete the Recovery Services vault is recommended only if all of the dependencies are removed and you're still getting the *Vault deletion error*. Try any or all of the following tips:
@@ -178,8 +321,6 @@ This option to delete the Recovery Services vault is recommended only if all of
178321
- Try [deleting the vault from the portal](#delete-the-recovery-services-vault) again.
179322
- If all of the dependencies are removed and you're still getting the *Vault deletion error*, use the ARMClient tool to perform the following steps (after the note).
180323
181-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
182-
183324
1. Go to [chocolatey.org](https://chocolatey.org/) to download and install Chocolatey. Then, install ARMClient by running the following command:
184325
185326
`choco install armclient --source=https://chocolatey.org/api/v2/`

articles/connectors/connectors-create-api-excel.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ logic app in the Logic App Designer, if not already open.
7070
1. In the search box, enter "excel" as your filter. Under the actions list,
7171
select the action you want.
7272

73+
> [!NOTE]
74+
> The Logic App Designer can't load tables that have 100 or more columns.
75+
> If possible, reduce the number of columns in the selected table so that
76+
> the designer can load the table.
77+
7378
1. If prompted, sign in to your Office 365 account.
7479

7580
Your credentials authorize your logic app to create a

articles/media-services/previous/media-services-release-notes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ These release notes for Azure Media Services summarize changes from previous rel
2525
2626
We want to hear from our customers so that we can focus on fixing problems that affect you. To report a problem or ask questions, submit a post in the [Azure Media Services MSDN Forum].
2727

28-
## <a id="issues"/>Currently known issues
28+
## <a id="issues"/>Known issues
2929
### <a id="general_issues"/>Media Services general issues
3030

3131
| Issue | Description |
@@ -37,6 +37,7 @@ We want to hear from our customers so that we can focus on fixing problems that
3737
| When you query entities, a limit of 1,000 entities is returned at one time because the public REST version 2 limits query results to 1,000 results. |Use Skip and Take (.NET)/top (REST) as described in [this .NET example](media-services-dotnet-manage-entities.md#enumerating-through-large-collections-of-entities) and [this REST API example](media-services-rest-manage-entities.md#enumerating-through-large-collections-of-entities). |
3838
| Some clients can come across a repeat tag issue in the Smooth Streaming manifest. |For more information, see [this section](media-services-deliver-content-overview.md#known-issues). |
3939
| Media Services .NET SDK objects can't be serialized and as a result don't work with Azure Cache for Redis. |If you try to serialize the SDK AssetCollection object to add it to Azure Cache for Redis, an exception is thrown. |
40+
|The REST API responds with an error message saying “The filter cannot be accessed by this version of REST Api” when attempting to get an Asset or Account level filter.|The filter was created or modified with a newer API version than is being used to try to get the filter. This can happen if two API versions are being used by code or tools being used by the customer. The best solution here is to upgrade the code or tools to use the newer or the two API versions.|
4041

4142
## <a id="rest_version_history"/>REST API version history
4243
For information about the Media Services REST API version history, see the [Azure Media Services REST API reference].

0 commit comments

Comments
 (0)