You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Customer intent: As an administrator of an Azure AD tenant, I want to configure the properties of an enterprise application.
15
17
---
16
18
@@ -29,16 +31,99 @@ To configure the properties of an enterprise application, you need:
29
31
30
32
Application properties control how the application is represented and how the application is accessed.
31
33
34
+
:::zone pivot="portal"
35
+
32
36
To configure the application properties:
33
37
34
38
1. Go to the [Azure Active Directory Admin Center](https://aad.portal.azure.com) and sign in using one of the roles listed in the prerequisites.
35
39
1. In the left menu, select **Enterprise applications**. The **All applications** pane opens and displays a list of the applications in your Azure AD tenant. Search for and select the application that you want to use.
36
40
1. In the **Manage** section, select **Properties** to open the **Properties** pane for editing.
37
-
1. Configure the properties based on the needs of your application.
41
+
1. On the **Properties** pane, you may want to configure the following properties for your application:
42
+
- Logo
43
+
- User sign in options
44
+
- App visibility to users
45
+
- Set available URL options
46
+
- Choose whether app assignment is required
47
+
48
+
:::zone-end
49
+
50
+
:::zone pivot="ms-powershell"
51
+
52
+
Use the following Microsoft Graph PowerShell script to configure basic application properties.
53
+
54
+
You'll need to consent to the `Application.ReadWrite.All` permission.
To configure the basic properties of an application, sign in to [Graph Explorer](https://developer.microsoft.com/graph/graph-explorer) with one of the roles listed in the prerequisite section.
90
+
91
+
You'll need to consent to the `Application.ReadWrite.All` permission.
92
+
93
+
Run the following Microsoft Graph query to configure basic application properties.
## Use Microsoft Graph to configure application properties
40
125
41
-
You can also configure properties of both app registrations and enterprise applications (service principals) through Microsoft Graph. These can include basic properties, permissions, and role assignments. For more information, see [Create and manage an Azure AD application using Microsoft Graph](/graph/tutorial-applications-basics#configure-other-basic-properties-for-your-app).
126
+
You can also configure other advanced properties of both app registrations and enterprise applications (service principals) through Microsoft Graph. These include properties such as permissions, and role assignments. For more information, see [Create and manage an Azure AD application using Microsoft Graph](/graph/tutorial-applications-basics#configure-other-basic-properties-for-your-app).
0 commit comments