Enable-AzureADDirectoryRole
Aktiverar en befintlig katalogroll i Azure Active Directory.
Syntax
Enable-AzureADDirectoryRole
[-InformationAction <ActionPreference>]
[-InformationVariable <String>]
[-RoleTemplateId <String>]
[<CommonParameters>]
Description
Cmdleten Enable-AzureADDirectoryRole aktiverar en befintlig katalogroll i Azure Active Directory.
Exempel
Exempel 1: Aktivera en katalogroll
# 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.
Det första kommandot hämtar en inbjudningsroll som har visningsnamnet Gästinbjudare med hjälp av cmdleten Get-AzureADDirectoryRoleTemplate (./Get-AzureADDirectoryRoleTemplate.md). Kommandot lagrar gäst inbjudare i variabeln $InviterRole.
Det andra kommandot visar innehållet i $InviterRole.
Det slutliga kommandot aktiverar katalogrollen i $InviterRole.
Parametrar
-InformationAction
Anger hur den här cmdleten svarar på en informationshändelse. De acceptabla värdena för den här parametern är:
- Fortsätt
- Ignorera
- Fråga
- SilentlyContinue
- Stoppa
- Suspend
Typ: | ActionPreference |
Alias: | infa |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-InformationVariable
Anger en variabel där ett informationshändelsemeddelande ska lagras.
Typ: | String |
Alias: | iv |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-RoleTemplateId
ID för den rollmall som ska aktiveras
Typ: | String |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
Kommentarer
Se migreringsguiden för Enable-AzureADDirectoryRole till Microsoft Graph PowerShell.