File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,7 @@ This command turns on the self-serve password reset feature for all administrato
38
38
## PARAMETERS
39
39
40
40
### -SelfServePasswordResetEnabled
41
- Indicates whether to allow the use of the self-service password reset feature.
42
- This setting is applied company-wide.
41
+ Indicates whether to allow the use of the self-service password reset feature for all administrators in the company.
43
42
44
43
``` yaml
45
44
Type : Boolean
Original file line number Diff line number Diff line change @@ -22,9 +22,11 @@ The Add-AzureADApplicationOwner cmdlet adds an owner to an Azure Active Director
22
22
23
23
## EXAMPLES
24
24
25
- ### Example 1: Add an owner to an application
25
+ ### Example 1: Add a user as an owner to an application
26
26
```
27
- PS C:\>Add-AzureADApplicationOwner -ObjectId 3ddd22e7-a150-4bb3-b100-e410dea1cb84 -RefObjectId c13dd34a-492b-4561-b171-40fcce2916c5
27
+ PS C:\> $ApplicationId = (Get-AzureADApplication -Top 1).ObjectId
28
+ PS C:\> $UserObjectId = (Get-AzureADUser -Top 1).ObjectId
29
+ PS C:\> Add-AzureADApplicationOwner -ObjectId $ApplicationId -RefObjectId $UserObjectId
28
30
```
29
31
30
32
This command adds an owner to an application.
You can’t perform that action at this time.
0 commit comments