Skip to content

Commit 4b709a7

Browse files
Merge pull request Azure#957 from SteveMutungi254/main
Adding a deprecation warning on installation page
2 parents c69054e + 2e93f80 commit 4b709a7

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

azureadps-2.0/AzureAD/migrate/New-AzureADGroupAppRoleAssignment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This article provides migration details from New-AzureADGroupAppRoleAssignment c
3030
View more [details on permissions](/graph/api/group-post-approleassignments#permissions).
3131

3232
> [!NOTE]
33-
> As a best practice, we recommend creating app role assignments through the [`appRoleAssignedTo` relationship of the _resource_ service principal](serviceprincipal-post-approleassignedto.md), instead of the `appRoleAssignments` relationship of the assigned user, group, or service principal.
33+
> As a best practice, we recommend creating app role assignments through the [`appRoleAssignedTo` relationship of the _resource_ service principal](/graph/api/serviceprincipal-post-approleassignedto), instead of the `appRoleAssignments` relationship of the assigned user, group, or service principal.
3434
3535
## Property Mapping
3636

docs-conceptual/azureadps-2.0/install-adv2.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
---
22
title: 'Install AzureAD PowerShell for Graph'
3-
description: This provides a guide on the installation process of the Azure AD PowerShell module.
3+
description: Installation guidance for the Azure AD PowerShell module.
44
ms.service: active-directory
55
ms.workload: identity
66
ms.topic: overview
7-
ms.date: 02/08/2022
8-
ms.author: rodejo
7+
ms.date: 12/16/2023
8+
ms.author: eunicewaweru
99
ms.custom: posh-docs-conceptual
10-
ms.reviewer: rodejo
10+
ms.reviewer: stevemutungi
1111
---
1212
# Install Azure Active Directory PowerShell for Graph
1313

14+
>[!IMPORTANT]
15+
> Azure AD Powershell is planned for deprecation on **March 30, 2024**. For more details on the deprecation plans, see the [deprecation update](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/important-azure-ad-graph-retirement-and-powershell-module/ba-p/3848270). We encourage you to continue migrating to [Microsoft Graph PowerShell](/powershell/microsoftgraph/overview), which is the recommended module for interacting with Azure AD. In addition, Microsoft Graph PowerShell allows you access to all Microsoft Graph APIs and is available on PowerShell 7. For answers to frequent migration queries, see the [Migration FAQ](migration-faq.yml).
16+
1417
You can use the Azure Active Directory PowerShell module version for Graph for Azure AD administrative tasks such as user management, domain management and for configuring single sign-on. The cmdlets listed here are different from the MSOnline cmdlets which are part of Azure Active Directory PowerShell version 1.0.
1518

16-
The Azure AD PowerShell for Graph module has two versions: a Public Preview version and a General Availability (GA) version. It is not recommended to use the Public Preview version for production scenarios.
19+
The Azure AD PowerShell for Graph module has two versions: a Public Preview version and a General Availability (GA) version. It isn't recommended to use the Public Preview version for production scenarios.
1720

18-
To download the modules from the PowerShell Gallery use the following;
21+
Download the modules from the PowerShell Gallery use the following;
1922
- [AzureADPreview](https://www.powershellgallery.com/packages/AzureADPreview)
2023
- [AzureAD](https://www.powershellgallery.com/packages/AzureAD)
2124

@@ -57,7 +60,7 @@ To install the public preview release, run:
5760
Install-module AzureADPreview
5861
```
5962

60-
Note that you cannot install both the preview version and the GA version on the same computer at the same time.
63+
You cannot install both the preview version and the GA version on the same computer at the same time.
6164

6265
### About the PowerShell Gallery
6366

@@ -106,7 +109,7 @@ ModuleType Version Name                ExportedCommands
106109
Binary     2.0.0.7 azureadpreview     {Add-AzureADAdmini...
107110
```
108111

109-
To update the version of the Azure AD PowerShell module on your computer, re-run the **Install-Module** cmdlet:
112+
To update the version of the Azure AD PowerShell module on your computer, rerun the **Install-Module** cmdlet:
110113

111114
```PowerShell
112115
Install-Module AzureADPreview
@@ -116,7 +119,7 @@ This command checks the PowerShell gallery to see if a newer version is availabl
116119
## Connect to Azure AD
117120

118121
Before you can run any of the cmdlets discussed in this article, you must first connect to your online service.
119-
To do so, run the cmdlet **Connect-AzureAD** at the Windows PowerShell command prompt. You will then be prompted for your credentials. If you want, you can supply your credentials in advance, for example:
122+
To do so, run the cmdlet **Connect-AzureAD** at the Windows PowerShell command prompt. You'll then be prompted for your credentials. If you want, you can supply your credentials in advance, for example:
120123

121124
```PowerShell
122125
$AzureAdCred = Get-Credential

0 commit comments

Comments
 (0)