Enable-AzureADDirectoryRole
Azure Active Directory에서 기존 디렉터리 역할을 활성화합니다.
구문
Enable-AzureADDirectoryRole
[-InformationAction <ActionPreference>]
[-InformationVariable <String>]
[-RoleTemplateId <String>]
[<CommonParameters>]
Description
Enable-AzureADDirectoryRole cmdlet은 Azure Active Directory에서 기존 디렉터리 역할을 활성화합니다.
예제
예제 1: 디렉터리 역할 사용
# Retrieve the Template Role object for the Guest Inviter role
$InviterRole = Get-AzureADDirectoryRoleTemplate | Where-Object {$_.DisplayName -eq "Guest Inviter"}
# Inspect the $Inviter variable to make sure we found the correct template role
$InviterRole
ObjectId DisplayName Description
-------- ----------- -----------
95e79109-95c0-4d8e-aee3-d01accf2d47b Guest Inviter Guest Inviter has access to invite guest users.
# Enable the Inviter Role
Enable-AzureADDirectoryRole -RoleTemplateId $InviterRole.ObjectId
ObjectId DisplayName Description
-------- ----------- -----------
03618579-3c16-4765-9539-86d9163ee3d9 Guest Inviter Guest Inviter has access to invite guest users.
첫 번째 명령은 Get-AzureADDirectoryRoleTemplate cmdlet을 사용하여 게스트 초대자라는 표시 이름을 포함하는 초대자 역할을 가져옵니다. 명령은 게스트 초대자를 $InviterRole 변수에 저장합니다.
두 번째 명령은 $InviterRole 내용을 표시합니다.
최종 명령은 $InviterRole 디렉터리 역할을 사용하도록 설정합니다.
매개 변수
-InformationAction
이 cmdlet이 정보 이벤트에 응답하는 방법을 지정합니다. 이 매개 변수에 허용되는 값은 다음과 같습니다.
- 계속
- 무시
- 문의
- SilentlyContinue
- 중지
- 일시 중지됨
형식: | ActionPreference |
별칭: | infa |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-InformationVariable
정보 이벤트 메시지를 저장할 변수를 지정합니다.
형식: | String |
별칭: | iv |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-RoleTemplateId
사용하도록 설정할 역할 템플릿의 ID
형식: | String |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |