Skip to content

Commit dd89ed1

Browse files
author
Nicolas Oman
committed
2 parents 9cf4841 + 7b9b354 commit dd89ed1

31 files changed

+284
-131
lines changed

articles/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to manage a user-assigned managed identity using Azure CLI
2+
title: Manage user-assigned managed identity - Azure CLI - Azure AD
33
description: Step by step instructions on how to create, list and delete a user-assigned managed identity using the Azure CLI.
44
services: active-directory
55
documentationcenter:

articles/active-directory/managed-identities-azure-resources/how-to-manage-ua-identity-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to manage Azure user-assigned managed identities using REST
2+
title: Manage user-assigned managed identities using REST - Azure AD
33
description: Step by step instructions on how to create, list and delete a user-assigned managed identity to make REST API calls.
44
services: active-directory
55
documentationcenter:

articles/active-directory/managed-identities-azure-resources/how-to-view-managed-identity-service-principal-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to view the service principal of a managed identity using Azure CLI
2+
title: View service principal of a managed identity - Azure CLI - Azure AD
33
description: Step-by-step instructions for viewing the service principal of a managed identity using Azure CLI.
44
services: active-directory
55
documentationcenter: ''

articles/active-directory/managed-identities-azure-resources/qs-configure-cli-windows-vmss.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to configure system and user-assigned managed identities on an Azure virtual machine scale set using Azure CLI
2+
title: Configure managed identities on virtual machine scale set - Azure CLI - Azure AD
33
description: Step by step instructions for configuring system and user-assigned managed identities on an Azure virtual machine scale set, using Azure CLI.
44
services: active-directory
55
documentationcenter:

articles/active-directory/managed-identities-azure-resources/qs-configure-rest-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to configure system and user-assigned managed identities on an Azure VM using REST
2+
title: Configure managed identities on Azure VM using REST - Azure AD
33
description: Step by step instructions for configuring a system and user-assigned managed identities on an Azure VM using CURL to make REST API calls.
44
services: active-directory
55
documentationcenter:

articles/active-directory/managed-identities-azure-resources/services-support-managed-identities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Services that support managed identities for Azure resources
2+
title: Azure Services that support managed identities - Azure AD
33
description: List of services that support managed identities for Azure resources and Azure AD authentication
44
services: active-directory
55
author: MarkusVi

articles/active-directory/managed-identities-azure-resources/tutorial-windows-vm-access-arm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use a Windows VM system-assigned managed identity to access Azure Resource Manager
2+
title: Tutorial`:` Use managed identity to access Azure Resource Manager - Windows - Azure AD
33
description: A tutorial that walks you through the process of using a Windows VM system-assigned managed identity to access Azure Resource Manager.
44
services: active-directory
55
documentationcenter: ''

articles/active-directory/managed-identities-azure-resources/tutorial-windows-vm-access-cosmos-db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use a Windows VM system-assigned managed identity to access Azure Cosmos DB
2+
title: Tutorial`:` Use a managed identity to access Azure Cosmos DB - Windows - Azure AD
33
description: A tutorial that walks you through the process of using a system-assigned managed identity on a Windows VM, to access Azure Cosmos DB.
44
services: active-directory
55
documentationcenter: ''

articles/active-directory/managed-identities-azure-resources/tutorial-windows-vm-ua-arm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use a Windows VM user-assigned managed identity to access Azure Resource Manager
2+
title: Tutorial`:` Use a managed identity to access Azure Resource Manager - Windows - Azure AD
33
description: A tutorial that walks you through the process of using a user-assigned managed identity on a Windows VM, to access Azure Resource Manager.
44
services: active-directory
55
documentationcenter: ''
@@ -17,7 +17,7 @@ ms.author: markvi
1717
ms.collection: M365-identity-device-management
1818
---
1919

20-
# Tutorial: Use a User-assigned Managed Identity on a Windows VM, to access Azure Resource Manager
20+
# Tutorial: Use a user-assigned managed identity on a Windows VM to access Azure Resource Manager
2121

2222
[!INCLUDE [preview-notice](~/includes/active-directory-msi-preview-notice-ua.md)]
2323

articles/cosmos-db/table-storage-how-to-use-c-plus.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ In this guide, you use storage features from a C++ application. To do so, instal
4343

4444
To install the Azure Storage Client Library for C++, use the following methods:
4545

46-
* Linux. Follow the instructions given in [Azure Storage Client Library for C++](https://github.com/Azure/azure-storage-cpp/blob/master/README.md).
47-
* Windows. In Visual Studio, select **Tools > NuGet Package Manager > Package Manager Console**. Run the following command in the **Package Management Console**:
46+
* **Linux:** Follow the instructions given in the [Azure Storage Client Library for C++ README: Getting Started on Linux](https://github.com/Azure/azure-storage-cpp#getting-started-on-linux) page.
47+
* **Windows:** On Windows, use [vcpkg](https://github.com/microsoft/vcpkg) as the dependency manager. Follow the [quick-start](https://github.com/microsoft/vcpkg#quick-start) to initialize vcpkg. Then, use the following command to install the library:
4848

49-
```powershell
50-
Install-Package wastorage
51-
```
49+
```powershell
50+
.\vcpkg.exe install azure-storage-cpp
51+
```
5252

53-
For more information about **Package Management Console**, see [Install and manage packages with the Package Manager Console in Visual Studio](/nuget/tools/package-manager-console).
53+
You can find a guide for how to build the source code and export to Nuget in the [README](https://github.com/Azure/azure-storage-cpp#download--install) file.
5454

5555
### Configure access to the Table client library
5656

0 commit comments

Comments
 (0)