contoso.comのSMTPのアドレス空間を使用するMicrosoftExchange組織があります。 何人かのユーザーは、自分のcontoso.com電子メールアドレスを使用して、Azure Active Directory(Azure AD)へのセルフサービスサインアップを行います。 自己署名ユーザーを含むAzureADテナントに対するグローバル管理者特権を取得します。 Microsoft 365サービスへのセルフサービスサインアップのために、ユーザーがcontoso.com AzureADテナントでユーザーアカウントを作成できないようにする必要があります。 どのPowerShellコマンドレットを実行する必要がありますか?
正解:A
Self-service sign-up: Method by which a user signs up for a cloud service and has an identity automatically created for them in Azure AD based on their email domain. Azure AD cmdlet Set-MsolCompanySettings could help you to prevent creating user accounts with parameters: AllowEmailVerifiedUsers (users can join the tenant by email validation)-->when is TRUE. AllowAdHocSubscriptions (controls the ability for users to perform self-service sign-up) e.g. Set-MsolCompanySettings -AllowEmailVerifiedUsers $false -AllowAdHocSubscriptions $false Reference: https://docs.microsoft.com/en-us/azure/active-directory/enterprise-users/directory-self-service- signup