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
{{ message }}
This repository was archived by the owner on May 17, 2024. It is now read-only.
The scripts install the required PowerShell module (AzureAD) for the current user if needed. However, if you want to install if for all users on the machine, you can follow the following steps:
80
+
The scripts install the required PowerShell module (Microsoft.Graph.Applications) for the current user if needed. However, if you want to install if for all users on the machine, you can follow the following steps:
81
81
82
-
1. If you have never done it already, in the PowerShell window, install the AzureAD PowerShell modules. For this:
82
+
1. If you have never done it already, in the PowerShell window, install the Graph PowerShell modules. For this:
83
83
84
84
1. Open PowerShell as admin (On Windows, Search Powershell in the search bar, right click on it and select Run as administrator).
85
85
2. Type:
86
-
86
+
87
87
```PowerShell
88
-
Install-Module AzureAD
88
+
Install-Module Microsoft.Graph.Applications
89
89
```
90
90
91
91
or if you cannot be administrator on your machine, run:
@@ -131,7 +131,7 @@ Note that the script will choose the tenant in which to create the applications,
131
131
When you know the identity and credentials of the user in the name of whom you want to create the applications, you can use the non-interactive approach. It's more adapted to DevOps. Here is an example of script you'd want to run in a PowerShell Window
0 commit comments