├── .azure-pipelines ├── 1es-entra-powershell-ci-build.yml ├── 1es-entra-powershell-pr.yml ├── 1es-entra-powershell-release.yml ├── common-templates │ ├── esrp │ │ ├── codesign-nuget.yml │ │ └── codesign.yml │ ├── install-tools.yml │ ├── security-post-checks.yml │ └── security-pre-checks.yml ├── generation-templates │ ├── generate_adapter-1es.yml │ └── generate_adapter.yml ├── integration-tests.yml └── pull-request-template.yml ├── .config ├── 1espt │ └── PipelineAutobaseliningConfig.yml ├── CredScanSuppressions.json └── guardian │ └── .gdnbaselines ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── entra-powershell-bug-report.md │ └── feature_request.md └── policies │ ├── msgraph-ps-compatibility-azuread-branch-protection.yml │ └── resourceManagement.yml ├── .gitignore ├── .openpublishing.publish.config.json ├── CONTRIBUTING.md ├── GET-STARTED.md ├── LICENSE ├── LICENSE-CODE ├── MOTIVATION.md ├── PREREQUISITE.md ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.md ├── assets └── aadconsentgrantpermissiontable.csv ├── cabgen-bootstrap.yml ├── development-docs ├── README.md ├── cmdlet-references-documentation │ ├── cmdlet-reference-example-beta.md │ ├── cmdlet-reference-example.md │ ├── cmdlet-reference-template.md │ └── sample-data │ │ ├── fictitious-guids.md │ │ └── fictitious-names.md └── design-guidelines │ ├── README.md │ ├── cleaning-up-commits.md │ ├── cmdlet-best-practices.md │ ├── parameter-best-practices.md │ └── piping-best-practices.md ├── misc └── acknowledgements ├── module ├── .sourcemap-maml-0.json ├── Entra │ ├── Microsoft.Entra │ │ ├── Applications │ │ │ ├── Add-EntraApplicationOwner.ps1 │ │ │ ├── Add-EntraServicePrincipalDelegatedPermissionClassification.ps1 │ │ │ ├── Add-EntraServicePrincipalOwner.ps1 │ │ │ ├── Get-EntraApplication.ps1 │ │ │ ├── Get-EntraApplicationExtensionProperty.ps1 │ │ │ ├── Get-EntraApplicationKeyCredential.ps1 │ │ │ ├── Get-EntraApplicationLogo.ps1 │ │ │ ├── Get-EntraApplicationOwner.ps1 │ │ │ ├── Get-EntraApplicationPasswordCredential.ps1 │ │ │ ├── Get-EntraApplicationServiceEndpoint.ps1 │ │ │ ├── Get-EntraApplicationTemplate.ps1 │ │ │ ├── Get-EntraDeletedApplication.ps1 │ │ │ ├── Get-EntraDeletedServicePrincipal.ps1 │ │ │ ├── Get-EntraServicePrincipal.ps1 │ │ │ ├── Get-EntraServicePrincipalAppRoleAssignedTo.ps1 │ │ │ ├── Get-EntraServicePrincipalAppRoleAssignment.ps1 │ │ │ ├── Get-EntraServicePrincipalCreatedObject.ps1 │ │ │ ├── Get-EntraServicePrincipalDelegatedPermissionClassification.ps1 │ │ │ ├── Get-EntraServicePrincipalKeyCredential.ps1 │ │ │ ├── Get-EntraServicePrincipalMembership.ps1 │ │ │ ├── Get-EntraServicePrincipalOAuth2PermissionGrant.ps1 │ │ │ ├── Get-EntraServicePrincipalOwnedObject.ps1 │ │ │ ├── Get-EntraServicePrincipalOwner.ps1 │ │ │ ├── Get-EntraServicePrincipalPasswordCredential.ps1 │ │ │ ├── New-EntraApplication.ps1 │ │ │ ├── New-EntraApplicationExtensionProperty.ps1 │ │ │ ├── New-EntraApplicationFromApplicationTemplate.ps1 │ │ │ ├── New-EntraApplicationKey.ps1 │ │ │ ├── New-EntraApplicationKeyCredential.ps1 │ │ │ ├── New-EntraApplicationPassword.ps1 │ │ │ ├── New-EntraApplicationPasswordCredential.ps1 │ │ │ ├── New-EntraCustomHeaders.ps1 │ │ │ ├── New-EntraServicePrincipal.ps1 │ │ │ ├── New-EntraServicePrincipalAppRoleAssignment.ps1 │ │ │ ├── New-EntraServicePrincipalKeyCredential.ps1 │ │ │ ├── New-EntraServicePrincipalPasswordCredential.ps1 │ │ │ ├── Remove-EntraApplication.ps1 │ │ │ ├── Remove-EntraApplicationExtensionProperty.ps1 │ │ │ ├── Remove-EntraApplicationKey.ps1 │ │ │ ├── Remove-EntraApplicationKeyCredential.ps1 │ │ │ ├── Remove-EntraApplicationOwner.ps1 │ │ │ ├── Remove-EntraApplicationPassword.ps1 │ │ │ ├── Remove-EntraApplicationPasswordCredential.ps1 │ │ │ ├── Remove-EntraApplicationVerifiedPublisher.ps1 │ │ │ ├── Remove-EntraDeletedApplication.ps1 │ │ │ ├── Remove-EntraDeletedDirectoryObject.ps1 │ │ │ ├── Remove-EntraServicePrincipal.ps1 │ │ │ ├── Remove-EntraServicePrincipalAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraServicePrincipalDelegatedPermissionClassification.ps1 │ │ │ ├── Remove-EntraServicePrincipalKeyCredential.ps1 │ │ │ ├── Remove-EntraServicePrincipalOwner.ps1 │ │ │ ├── Remove-EntraServicePrincipalPasswordCredential.ps1 │ │ │ ├── Restore-EntraDeletedApplication.ps1 │ │ │ ├── Select-EntraGroupIdsServicePrincipalIsMemberOf.ps1 │ │ │ ├── Set-EntraApplication.ps1 │ │ │ ├── Set-EntraApplicationLogo.ps1 │ │ │ ├── Set-EntraApplicationVerifiedPublisher.ps1 │ │ │ └── Set-EntraServicePrincipal.ps1 │ │ ├── Authentication │ │ │ ├── Add-EntraEnvironment.ps1 │ │ │ ├── Connect-Entra.ps1 │ │ │ ├── Disconnect-Entra.ps1 │ │ │ ├── Find-EntraPermission.ps1 │ │ │ ├── Get-EntraContext.ps1 │ │ │ ├── Get-EntraEnvironment.ps1 │ │ │ ├── New-EntraCustomHeaders.ps1 │ │ │ ├── Revoke-EntraSignedInUserAllRefreshToken.ps1 │ │ │ └── Revoke-EntraUserAllRefreshToken.ps1 │ │ ├── CertificateBasedAuthentication │ │ │ ├── Get-EntraUserCBAAuthorizationInfo.ps1 │ │ │ ├── Get-EntraUserCertificateUserIdsFromCertificate.ps1 │ │ │ └── Set-EntraUserCBACertificateUserId.ps1 │ │ ├── DirectoryManagement │ │ │ ├── Add-EntraAdministrativeUnitMember.ps1 │ │ │ ├── Add-EntraCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ │ ├── Add-EntraDeviceRegisteredOwner.ps1 │ │ │ ├── Add-EntraDeviceRegisteredUser.ps1 │ │ │ ├── Add-EntraDirectoryRoleMember.ps1 │ │ │ ├── Add-EntraScopedRoleMembership.ps1 │ │ │ ├── Confirm-EntraDomain.ps1 │ │ │ ├── Enable-EntraDirectoryRole.ps1 │ │ │ ├── Get-EntraAccountSku.ps1 │ │ │ ├── Get-EntraAdministrativeUnit.ps1 │ │ │ ├── Get-EntraAdministrativeUnitMember.ps1 │ │ │ ├── Get-EntraAttributeSet.ps1 │ │ │ ├── Get-EntraContact.ps1 │ │ │ ├── Get-EntraContactDirectReport.ps1 │ │ │ ├── Get-EntraContactManager.ps1 │ │ │ ├── Get-EntraContactMembership.ps1 │ │ │ ├── Get-EntraContract.ps1 │ │ │ ├── Get-EntraCustomSecurityAttributeDefinition.ps1 │ │ │ ├── Get-EntraCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ │ ├── Get-EntraDeletedAdministrativeUnit.ps1 │ │ │ ├── Get-EntraDeletedDevice.ps1 │ │ │ ├── Get-EntraDeletedDirectoryObject.ps1 │ │ │ ├── Get-EntraDevice.ps1 │ │ │ ├── Get-EntraDeviceRegisteredOwner.ps1 │ │ │ ├── Get-EntraDeviceRegisteredUser.ps1 │ │ │ ├── Get-EntraDirSyncConfiguration.ps1 │ │ │ ├── Get-EntraDirSyncFeature.ps1 │ │ │ ├── Get-EntraDirectoryObject.ps1 │ │ │ ├── Get-EntraDirectoryObjectOnPremisesProvisioningError.ps1 │ │ │ ├── Get-EntraDirectoryRole.ps1 │ │ │ ├── Get-EntraDirectoryRoleMember.ps1 │ │ │ ├── Get-EntraDirectoryRoleTemplate.ps1 │ │ │ ├── Get-EntraDomain.ps1 │ │ │ ├── Get-EntraDomainFederationSettings.ps1 │ │ │ ├── Get-EntraDomainNameReference.ps1 │ │ │ ├── Get-EntraDomainServiceConfigurationRecord.ps1 │ │ │ ├── Get-EntraDomainVerificationDnsRecord.ps1 │ │ │ ├── Get-EntraExtensionProperty.ps1 │ │ │ ├── Get-EntraFederationProperty.ps1 │ │ │ ├── Get-EntraPartnerInformation.ps1 │ │ │ ├── Get-EntraPasswordPolicy.ps1 │ │ │ ├── Get-EntraScopedRoleMembership.ps1 │ │ │ ├── Get-EntraSubscribedSku.ps1 │ │ │ ├── Get-EntraSubscription.ps1 │ │ │ ├── Get-EntraTenantDetail.ps1 │ │ │ ├── New-EntraAdministrativeUnit.ps1 │ │ │ ├── New-EntraAttributeSet.ps1 │ │ │ ├── New-EntraCustomHeaders.ps1 │ │ │ ├── New-EntraCustomSecurityAttributeDefinition.ps1 │ │ │ ├── New-EntraDevice.ps1 │ │ │ ├── New-EntraDomain.ps1 │ │ │ ├── Remove-EntraAdministrativeUnit.ps1 │ │ │ ├── Remove-EntraAdministrativeUnitMember.ps1 │ │ │ ├── Remove-EntraContact.ps1 │ │ │ ├── Remove-EntraDevice.ps1 │ │ │ ├── Remove-EntraDeviceRegisteredOwner.ps1 │ │ │ ├── Remove-EntraDeviceRegisteredUser.ps1 │ │ │ ├── Remove-EntraDirectoryRoleMember.ps1 │ │ │ ├── Remove-EntraDomain.ps1 │ │ │ ├── Remove-EntraScopedRoleMembership.ps1 │ │ │ ├── Resolve-EntraTenant.ps1 │ │ │ ├── Restore-EntraDeletedDirectoryObject.ps1 │ │ │ ├── Set-EntraAdministrativeUnit.ps1 │ │ │ ├── Set-EntraAttributeSet.ps1 │ │ │ ├── Set-EntraCustomSecurityAttributeDefinition.ps1 │ │ │ ├── Set-EntraCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ │ ├── Set-EntraDevice.ps1 │ │ │ ├── Set-EntraDirSyncConfiguration.ps1 │ │ │ ├── Set-EntraDirSyncEnabled.ps1 │ │ │ ├── Set-EntraDirSyncFeature.ps1 │ │ │ ├── Set-EntraDomain.ps1 │ │ │ ├── Set-EntraDomainFederationSettings.ps1 │ │ │ ├── Set-EntraPartnerInformation.ps1 │ │ │ └── Set-EntraTenantDetail.ps1 │ │ ├── Enable-EntraAzureADAlias.ps1 │ │ ├── Get-EntraUnsupportedCommand.ps1 │ │ ├── Governance │ │ │ ├── Get-EntraDirectoryRoleAssignment.ps1 │ │ │ ├── Get-EntraDirectoryRoleDefinition.ps1 │ │ │ ├── New-EntraCustomHeaders.ps1 │ │ │ ├── New-EntraDirectoryRoleAssignment.ps1 │ │ │ ├── New-EntraDirectoryRoleDefinition.ps1 │ │ │ ├── Remove-EntraDirectoryRoleAssignment.ps1 │ │ │ ├── Remove-EntraDirectoryRoleDefinition.ps1 │ │ │ └── Set-EntraDirectoryRoleDefinition.ps1 │ │ ├── Groups │ │ │ ├── Add-EntraGroupMember.ps1 │ │ │ ├── Add-EntraGroupOwner.ps1 │ │ │ ├── Add-EntraLifecyclePolicyGroup.ps1 │ │ │ ├── Get-EntraDeletedGroup.ps1 │ │ │ ├── Get-EntraGroup.ps1 │ │ │ ├── Get-EntraGroupAppRoleAssignment.ps1 │ │ │ ├── Get-EntraGroupLifecyclePolicy.ps1 │ │ │ ├── Get-EntraGroupMember.ps1 │ │ │ ├── Get-EntraGroupOwner.ps1 │ │ │ ├── Get-EntraGroupPermissionGrant.ps1 │ │ │ ├── Get-EntraLifecyclePolicyGroup.ps1 │ │ │ ├── Get-EntraObjectSetting.ps1 │ │ │ ├── New-EntraCustomHeaders.ps1 │ │ │ ├── New-EntraGroup.ps1 │ │ │ ├── New-EntraGroupAppRoleAssignment.ps1 │ │ │ ├── New-EntraGroupLifecyclePolicy.ps1 │ │ │ ├── Remove-EntraGroup.ps1 │ │ │ ├── Remove-EntraGroupAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraGroupLifecyclePolicy.ps1 │ │ │ ├── Remove-EntraGroupMember.ps1 │ │ │ ├── Remove-EntraGroupOwner.ps1 │ │ │ ├── Remove-EntraLifecyclePolicyGroup.ps1 │ │ │ ├── Reset-EntraLifeCycleGroup.ps1 │ │ │ ├── Select-EntraGroupIdsContactIsMemberOf.ps1 │ │ │ ├── Select-EntraGroupIdsGroupIsMemberOf.ps1 │ │ │ ├── Select-EntraGroupIdsUserIsMemberOf.ps1 │ │ │ ├── Set-EntraGroup.ps1 │ │ │ └── Set-EntraGroupLifecyclePolicy.ps1 │ │ ├── Reports │ │ │ ├── Get-EntraAuditDirectoryLog.ps1 │ │ │ ├── Get-EntraAuditSignInLog.ps1 │ │ │ ├── Get-EntraAuthenticationMethodUserRegistrationDetailReport.ps1 │ │ │ └── New-EntraCustomHeaders.ps1 │ │ ├── SignIns │ │ │ ├── Get-EntraAuthorizationPolicy.ps1 │ │ │ ├── Get-EntraConditionalAccessPolicy.ps1 │ │ │ ├── Get-EntraFeatureRolloutPolicy.ps1 │ │ │ ├── Get-EntraIdentityProvider.ps1 │ │ │ ├── Get-EntraNamedLocationPolicy.ps1 │ │ │ ├── Get-EntraOAuth2PermissionGrant.ps1 │ │ │ ├── Get-EntraPermissionGrantConditionSet.ps1 │ │ │ ├── Get-EntraPermissionGrantPolicy.ps1 │ │ │ ├── Get-EntraPolicy.ps1 │ │ │ ├── Get-EntraTrustedCertificateAuthority.ps1 │ │ │ ├── Get-EntraUserAuthenticationMethod.ps1 │ │ │ ├── New-EntraConditionalAccessPolicy.ps1 │ │ │ ├── New-EntraCustomHeaders.ps1 │ │ │ ├── New-EntraFeatureRolloutPolicy.ps1 │ │ │ ├── New-EntraIdentityProvider.ps1 │ │ │ ├── New-EntraInvitation.ps1 │ │ │ ├── New-EntraNamedLocationPolicy.ps1 │ │ │ ├── New-EntraOauth2PermissionGrant.ps1 │ │ │ ├── New-EntraPermissionGrantConditionSet.ps1 │ │ │ ├── New-EntraPermissionGrantPolicy.ps1 │ │ │ ├── New-EntraPolicy.ps1 │ │ │ ├── New-EntraTrustedCertificateAuthority.ps1 │ │ │ ├── Remove-EntraConditionalAccessPolicy.ps1 │ │ │ ├── Remove-EntraFeatureRolloutPolicy.ps1 │ │ │ ├── Remove-EntraFeatureRolloutPolicyDirectoryObject.ps1 │ │ │ ├── Remove-EntraIdentityProvider.ps1 │ │ │ ├── Remove-EntraNamedLocationPolicy.ps1 │ │ │ ├── Remove-EntraOAuth2PermissionGrant.ps1 │ │ │ ├── Remove-EntraPermissionGrantConditionSet.ps1 │ │ │ ├── Remove-EntraPermissionGrantPolicy.ps1 │ │ │ ├── Remove-EntraPolicy.ps1 │ │ │ ├── Remove-EntraTrustedCertificateAuthority.ps1 │ │ │ ├── Reset-EntraStrongAuthenticationMethodByUpn.ps1 │ │ │ ├── Set-EntraAuthorizationPolicy.ps1 │ │ │ ├── Set-EntraConditionalAccessPolicy.ps1 │ │ │ ├── Set-EntraFeatureRolloutPolicy.ps1 │ │ │ ├── Set-EntraIdentityProvider.ps1 │ │ │ ├── Set-EntraNamedLocationPolicy.ps1 │ │ │ ├── Set-EntraPermissionGrantConditionSet.ps1 │ │ │ ├── Set-EntraPermissionGrantPolicy.ps1 │ │ │ ├── Set-EntraPolicy.ps1 │ │ │ ├── Set-EntraTrustedCertificateAuthority.ps1 │ │ │ └── Update-EntraOauth2PermissionGrant.ps1 │ │ ├── Test-EntraScript.ps1 │ │ ├── UnMappedAliases.psd1 │ │ └── Users │ │ │ ├── Get-EntraDeletedUser.ps1 │ │ │ ├── Get-EntraInactiveSignInUser.ps1 │ │ │ ├── Get-EntraUser.ps1 │ │ │ ├── Get-EntraUserAdministrativeUnit.ps1 │ │ │ ├── Get-EntraUserAppRoleAssignment.ps1 │ │ │ ├── Get-EntraUserCreatedObject.ps1 │ │ │ ├── Get-EntraUserDirectReport.ps1 │ │ │ ├── Get-EntraUserExtension.ps1 │ │ │ ├── Get-EntraUserGroup.ps1 │ │ │ ├── Get-EntraUserInactiveSignIn.ps1 │ │ │ ├── Get-EntraUserLicenseDetail.ps1 │ │ │ ├── Get-EntraUserManager.ps1 │ │ │ ├── Get-EntraUserMembership.ps1 │ │ │ ├── Get-EntraUserOAuth2PermissionGrant.ps1 │ │ │ ├── Get-EntraUserOwnedDevice.ps1 │ │ │ ├── Get-EntraUserOwnedObject.ps1 │ │ │ ├── Get-EntraUserRegisteredDevice.ps1 │ │ │ ├── Get-EntraUserRole.ps1 │ │ │ ├── Get-EntraUserSponsor.ps1 │ │ │ ├── Get-EntraUserThumbnailPhoto.ps1 │ │ │ ├── New-EntraCustomHeaders.ps1 │ │ │ ├── New-EntraUser.ps1 │ │ │ ├── New-EntraUserAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraUser.ps1 │ │ │ ├── Remove-EntraUserAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraUserExtension.ps1 │ │ │ ├── Remove-EntraUserManager.ps1 │ │ │ ├── Remove-EntraUserSponsor.ps1 │ │ │ ├── Set-EntraSignedInUserPassword.ps1 │ │ │ ├── Set-EntraUser.ps1 │ │ │ ├── Set-EntraUserExtension.ps1 │ │ │ ├── Set-EntraUserLicense.ps1 │ │ │ ├── Set-EntraUserManager.ps1 │ │ │ ├── Set-EntraUserPasswordProfile.ps1 │ │ │ ├── Set-EntraUserSponsor.ps1 │ │ │ ├── Set-EntraUserThumbnailPhoto.ps1 │ │ │ └── Update-EntraUserFromFederated.ps1 │ ├── UnMappedFiles │ │ ├── New-EntraCustomHeaders.ps1 │ │ └── Test-EntraScript.ps1 │ └── config │ │ ├── ModuleMetadata.json │ │ ├── ModuleSettings.json │ │ ├── dependencyMapping.json │ │ └── moduleMapping.json ├── EntraBeta │ ├── Microsoft.Entra.Beta │ │ ├── Applications │ │ │ ├── Add-EntraBetaApplicationOwner.ps1 │ │ │ ├── Add-EntraBetaApplicationPolicy.ps1 │ │ │ ├── Add-EntraBetaServicePrincipalDelegatedPermissionClassification.ps1 │ │ │ ├── Add-EntraBetaServicePrincipalOwner.ps1 │ │ │ ├── Get-EntraBetaApplication.ps1 │ │ │ ├── Get-EntraBetaApplicationExtensionProperty.ps1 │ │ │ ├── Get-EntraBetaApplicationKeyCredential.ps1 │ │ │ ├── Get-EntraBetaApplicationLogo.ps1 │ │ │ ├── Get-EntraBetaApplicationOwner.ps1 │ │ │ ├── Get-EntraBetaApplicationPasswordCredential.ps1 │ │ │ ├── Get-EntraBetaApplicationPolicy.ps1 │ │ │ ├── Get-EntraBetaApplicationProxyApplication.ps1 │ │ │ ├── Get-EntraBetaApplicationProxyConnector.ps1 │ │ │ ├── Get-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ │ ├── Get-EntraBetaApplicationProxyConnectorGroupMembers.ps1 │ │ │ ├── Get-EntraBetaApplicationProxyConnectorMemberOf.ps1 │ │ │ ├── Get-EntraBetaApplicationTemplate.ps1 │ │ │ ├── Get-EntraBetaDeletedApplication.ps1 │ │ │ ├── Get-EntraBetaDeletedServicePrincipal.ps1 │ │ │ ├── Get-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ │ ├── Get-EntraBetaServicePrincipal.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignedTo.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignment.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalCreatedObject.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalDelegatedPermissionClassification.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalKeyCredential.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalMembership.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalOAuth2PermissionGrant.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalOwnedObject.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalOwner.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalPasswordCredential.ps1 │ │ │ ├── Grant-EntraBetaMCPServerPermission.ps1 │ │ │ ├── New-EntraBetaApplication.ps1 │ │ │ ├── New-EntraBetaApplicationExtensionProperty.ps1 │ │ │ ├── New-EntraBetaApplicationFromApplicationTemplate.ps1 │ │ │ ├── New-EntraBetaApplicationKey.ps1 │ │ │ ├── New-EntraBetaApplicationKeyCredential.ps1 │ │ │ ├── New-EntraBetaApplicationPassword.ps1 │ │ │ ├── New-EntraBetaApplicationPasswordCredential.ps1 │ │ │ ├── New-EntraBetaApplicationProxyApplication.ps1 │ │ │ ├── New-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── New-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ │ ├── New-EntraBetaServicePrincipal.ps1 │ │ │ ├── New-EntraBetaServicePrincipalAppRoleAssignment.ps1 │ │ │ ├── New-EntraBetaServicePrincipalKeyCredential.ps1 │ │ │ ├── New-EntraBetaServicePrincipalPasswordCredential.ps1 │ │ │ ├── Remove-EntraBetaApplication.ps1 │ │ │ ├── Remove-EntraBetaApplicationExtensionProperty.ps1 │ │ │ ├── Remove-EntraBetaApplicationKey.ps1 │ │ │ ├── Remove-EntraBetaApplicationKeyCredential.ps1 │ │ │ ├── Remove-EntraBetaApplicationOwner.ps1 │ │ │ ├── Remove-EntraBetaApplicationPassword.ps1 │ │ │ ├── Remove-EntraBetaApplicationPasswordCredential.ps1 │ │ │ ├── Remove-EntraBetaApplicationPolicy.ps1 │ │ │ ├── Remove-EntraBetaApplicationProxyApplication.ps1 │ │ │ ├── Remove-EntraBetaApplicationProxyApplicationConnectorGroup.ps1 │ │ │ ├── Remove-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ │ ├── Remove-EntraBetaApplicationVerifiedPublisher.ps1 │ │ │ ├── Remove-EntraBetaDeletedApplication.ps1 │ │ │ ├── Remove-EntraBetaDeletedDirectoryObject.ps1 │ │ │ ├── Remove-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ │ ├── Remove-EntraBetaServicePrincipal.ps1 │ │ │ ├── Remove-EntraBetaServicePrincipalAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraBetaServicePrincipalDelegatedPermissionClassification.ps1 │ │ │ ├── Remove-EntraBetaServicePrincipalOwner.ps1 │ │ │ ├── Remove-EntraBetaServicePrincipalPasswordCredential.ps1 │ │ │ ├── Restore-EntraBetaDeletedApplication.ps1 │ │ │ ├── Revoke-EntraBetaMCPServerPermission.ps1 │ │ │ ├── Select-EntraBetaGroupIdsServicePrincipalIsMemberOf.ps1 │ │ │ ├── Set-EntraBetaApplication.ps1 │ │ │ ├── Set-EntraBetaApplicationLogo.ps1 │ │ │ ├── Set-EntraBetaApplicationProxyApplication.ps1 │ │ │ ├── Set-EntraBetaApplicationProxyApplicationConnectorGroup.ps1 │ │ │ ├── Set-EntraBetaApplicationProxyApplicationSingleSignOn.ps1 │ │ │ ├── Set-EntraBetaApplicationProxyConnector.ps1 │ │ │ ├── Set-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ │ ├── Set-EntraBetaApplicationVerifiedPublisher.ps1 │ │ │ ├── Set-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ │ └── Set-EntraBetaServicePrincipal.ps1 │ │ ├── Authentication │ │ │ ├── Connect-Entra.ps1 │ │ │ ├── Disconnect-Entra.ps1 │ │ │ ├── Get-EntraContext.ps1 │ │ │ ├── Get-EntraEnvironment.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── Revoke-EntraBetaSignedInUserAllRefreshToken.ps1 │ │ │ └── Revoke-EntraBetaUserAllRefreshToken.ps1 │ │ ├── DirectoryManagement │ │ │ ├── Add-EntraBetaAdministrativeUnitMember.ps1 │ │ │ ├── Add-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ │ ├── Add-EntraBetaDeviceRegisteredOwner.ps1 │ │ │ ├── Add-EntraBetaDeviceRegisteredUser.ps1 │ │ │ ├── Add-EntraBetaDirectoryRoleMember.ps1 │ │ │ ├── Add-EntraBetaScopedRoleMembership.ps1 │ │ │ ├── Confirm-EntraBetaDomain.ps1 │ │ │ ├── Enable-EntraBetaDirectoryRole.ps1 │ │ │ ├── Get-EntraBetaAccountSku.ps1 │ │ │ ├── Get-EntraBetaAdministrativeUnit.ps1 │ │ │ ├── Get-EntraBetaAdministrativeUnitMember.ps1 │ │ │ ├── Get-EntraBetaAttributeSet.ps1 │ │ │ ├── Get-EntraBetaContact.ps1 │ │ │ ├── Get-EntraBetaContactDirectReport.ps1 │ │ │ ├── Get-EntraBetaContactManager.ps1 │ │ │ ├── Get-EntraBetaContactMembership.ps1 │ │ │ ├── Get-EntraBetaContract.ps1 │ │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinition.ps1 │ │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ │ ├── Get-EntraBetaDeletedAdministrativeUnit.ps1 │ │ │ ├── Get-EntraBetaDeletedDevice.ps1 │ │ │ ├── Get-EntraBetaDeletedDirectoryObject.ps1 │ │ │ ├── Get-EntraBetaDevice.ps1 │ │ │ ├── Get-EntraBetaDeviceRegisteredOwner.ps1 │ │ │ ├── Get-EntraBetaDeviceRegisteredUser.ps1 │ │ │ ├── Get-EntraBetaDirSyncConfiguration.ps1 │ │ │ ├── Get-EntraBetaDirSyncFeature.ps1 │ │ │ ├── Get-EntraBetaDirectoryObject.ps1 │ │ │ ├── Get-EntraBetaDirectoryObjectOnPremisesProvisioningError.ps1 │ │ │ ├── Get-EntraBetaDirectoryRole.ps1 │ │ │ ├── Get-EntraBetaDirectoryRoleMember.ps1 │ │ │ ├── Get-EntraBetaDirectoryRoleTemplate.ps1 │ │ │ ├── Get-EntraBetaDirectorySetting.ps1 │ │ │ ├── Get-EntraBetaDirectorySettingTemplate.ps1 │ │ │ ├── Get-EntraBetaDomain.ps1 │ │ │ ├── Get-EntraBetaDomainFederationSettings.ps1 │ │ │ ├── Get-EntraBetaDomainNameReference.ps1 │ │ │ ├── Get-EntraBetaDomainServiceConfigurationRecord.ps1 │ │ │ ├── Get-EntraBetaDomainVerificationDnsRecord.ps1 │ │ │ ├── Get-EntraBetaFederationProperty.ps1 │ │ │ ├── Get-EntraBetaPartnerInformation.ps1 │ │ │ ├── Get-EntraBetaPasswordPolicy.ps1 │ │ │ ├── Get-EntraBetaScopedRoleMembership.ps1 │ │ │ ├── Get-EntraBetaSubscribedSku.ps1 │ │ │ ├── Get-EntraBetaSubscription.ps1 │ │ │ ├── Get-EntraBetaTenantDetail.ps1 │ │ │ ├── New-EntraBetaAdministrativeUnit.ps1 │ │ │ ├── New-EntraBetaAdministrativeUnitMember.ps1 │ │ │ ├── New-EntraBetaAttributeSet.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── New-EntraBetaCustomSecurityAttributeDefinition.ps1 │ │ │ ├── New-EntraBetaDevice.ps1 │ │ │ ├── New-EntraBetaDirectorySetting.ps1 │ │ │ ├── New-EntraBetaDomain.ps1 │ │ │ ├── Remove-EntraBetaAdministrativeUnit.ps1 │ │ │ ├── Remove-EntraBetaAdministrativeUnitMember.ps1 │ │ │ ├── Remove-EntraBetaContact.ps1 │ │ │ ├── Remove-EntraBetaDevice.ps1 │ │ │ ├── Remove-EntraBetaDeviceRegisteredOwner.ps1 │ │ │ ├── Remove-EntraBetaDeviceRegisteredUser.ps1 │ │ │ ├── Remove-EntraBetaDirectoryRoleMember.ps1 │ │ │ ├── Remove-EntraBetaDirectorySetting.ps1 │ │ │ ├── Remove-EntraBetaDomain.ps1 │ │ │ ├── Remove-EntraBetaScopedRoleMembership.ps1 │ │ │ ├── Resolve-EntraBetaTenant.ps1 │ │ │ ├── Restore-EntraBetaDeletedDirectoryObject.ps1 │ │ │ ├── Set-EntraBetaAdministrativeUnit.ps1 │ │ │ ├── Set-EntraBetaAttributeSet.ps1 │ │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinition.ps1 │ │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ │ ├── Set-EntraBetaDevice.ps1 │ │ │ ├── Set-EntraBetaDirSyncConfiguration.ps1 │ │ │ ├── Set-EntraBetaDirSyncEnabled.ps1 │ │ │ ├── Set-EntraBetaDirSyncFeature.ps1 │ │ │ ├── Set-EntraBetaDirectorySetting.ps1 │ │ │ ├── Set-EntraBetaDomain.ps1 │ │ │ ├── Set-EntraBetaDomainFederationSettings.ps1 │ │ │ ├── Set-EntraBetaPartnerInformation.ps1 │ │ │ └── Set-EntraBetaTenantDetail.ps1 │ │ ├── Enable-EntraAzureADAlias.ps1 │ │ ├── Get-EntraUnsupportedCommand.ps1 │ │ ├── Governance │ │ │ ├── Get-EntraBetaDirectoryRoleAssignment.ps1 │ │ │ ├── Get-EntraBetaDirectoryRoleDefinition.ps1 │ │ │ ├── Get-EntraBetaPrivilegedResource.ps1 │ │ │ ├── Get-EntraBetaPrivilegedRole.ps1 │ │ │ ├── Get-EntraBetaPrivilegedRoleAssignmentRequest.ps1 │ │ │ ├── Get-EntraBetaPrivilegedRoleDefinition.ps1 │ │ │ ├── Get-EntraBetaPrivilegedRoleSetting.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── New-EntraBetaDirectoryRoleAssignment.ps1 │ │ │ ├── New-EntraBetaDirectoryRoleDefinition.ps1 │ │ │ ├── New-EntraBetaPrivilegedRoleAssignment.ps1 │ │ │ ├── Remove-EntraBetaDirectoryRoleAssignment.ps1 │ │ │ ├── Remove-EntraBetaDirectoryRoleDefinition.ps1 │ │ │ ├── Set-EntraBetaAppRoleToApplicationUser.ps1 │ │ │ ├── Set-EntraBetaDirectoryRoleDefinition.ps1 │ │ │ ├── Set-EntraBetaPrivilegedRoleAssignmentRequest.ps1 │ │ │ └── Set-EntraBetaPrivilegedRoleSetting.ps1 │ │ ├── Groups │ │ │ ├── Add-EntraBetaGroupMember.ps1 │ │ │ ├── Add-EntraBetaGroupOwner.ps1 │ │ │ ├── Add-EntraBetaLifecyclePolicyGroup.ps1 │ │ │ ├── Get-EntraBetaDeletedGroup.ps1 │ │ │ ├── Get-EntraBetaGroup.ps1 │ │ │ ├── Get-EntraBetaGroupAppRoleAssignment.ps1 │ │ │ ├── Get-EntraBetaGroupLifecyclePolicy.ps1 │ │ │ ├── Get-EntraBetaGroupMember.ps1 │ │ │ ├── Get-EntraBetaGroupOwner.ps1 │ │ │ ├── Get-EntraBetaGroupPermissionGrant.ps1 │ │ │ ├── Get-EntraBetaLifecyclePolicyGroup.ps1 │ │ │ ├── Get-EntraBetaObjectSetting.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── New-EntraBetaGroup.ps1 │ │ │ ├── New-EntraBetaGroupAppRoleAssignment.ps1 │ │ │ ├── New-EntraBetaGroupLifecyclePolicy.ps1 │ │ │ ├── New-EntraBetaObjectSetting.ps1 │ │ │ ├── Remove-EntraBetaGroup.ps1 │ │ │ ├── Remove-EntraBetaGroupAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraBetaGroupLifecyclePolicy.ps1 │ │ │ ├── Remove-EntraBetaGroupMember.ps1 │ │ │ ├── Remove-EntraBetaGroupOwner.ps1 │ │ │ ├── Remove-EntraBetaLifecyclePolicyGroup.ps1 │ │ │ ├── Remove-EntraBetaObjectSetting.ps1 │ │ │ ├── Reset-EntraBetaLifeCycleGroup.ps1 │ │ │ ├── Select-EntraBetaGroupIdsContactIsMemberOf.ps1 │ │ │ ├── Select-EntraBetaGroupIdsGroupIsMemberOf.ps1 │ │ │ ├── Select-EntraBetaGroupIdsUserIsMemberOf.ps1 │ │ │ ├── Set-EntraBetaGroup.ps1 │ │ │ ├── Set-EntraBetaGroupLifecyclePolicy.ps1 │ │ │ └── Set-EntraBetaObjectSetting.ps1 │ │ ├── NetworkAccess │ │ │ ├── Enable-EntraBetaGlobalSecureAccessTenant.ps1 │ │ │ ├── Get-EntraBetaGlobalSecureAccessTenantStatus.ps1 │ │ │ ├── Get-EntraBetaPrivateAccessApplication.ps1 │ │ │ ├── Get-EntraBetaPrivateAccessApplicationSegment.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── New-EntraBetaPrivateAccessApplication.ps1 │ │ │ ├── New-EntraBetaPrivateAccessApplicationSegment.ps1 │ │ │ └── Remove-EntraBetaPrivateAccessApplicationSegment.ps1 │ │ ├── Reports │ │ │ ├── Get-EntraBetaApplicationSignInDetailedSummary.ps1 │ │ │ ├── Get-EntraBetaApplicationSignInSummary.ps1 │ │ │ ├── Get-EntraBetaAuditDirectoryLog.ps1 │ │ │ ├── Get-EntraBetaAuditSignInLog.ps1 │ │ │ ├── Get-EntraBetaAuthenticationMethodUserRegistrationDetailReport.ps1 │ │ │ ├── Get-EntraBetaCrossTenantAccessActivity.ps1 │ │ │ └── New-EntraBetaCustomHeaders.ps1 │ │ ├── SignIns │ │ │ ├── Add-EntraBetaFeatureRolloutPolicyDirectoryObject.ps1 │ │ │ ├── Add-EntraBetaServicePrincipalPolicy.ps1 │ │ │ ├── Get-EntraBetaAuthorizationPolicy.ps1 │ │ │ ├── Get-EntraBetaConditionalAccessPolicy.ps1 │ │ │ ├── Get-EntraBetaFeatureRolloutPolicy.ps1 │ │ │ ├── Get-EntraBetaIdentityProvider.ps1 │ │ │ ├── Get-EntraBetaNamedLocationPolicy.ps1 │ │ │ ├── Get-EntraBetaOAuth2PermissionGrant.ps1 │ │ │ ├── Get-EntraBetaPermissionGrantConditionSet.ps1 │ │ │ ├── Get-EntraBetaPermissionGrantPolicy.ps1 │ │ │ ├── Get-EntraBetaPolicy.ps1 │ │ │ ├── Get-EntraBetaPolicyAppliedObject.ps1 │ │ │ ├── Get-EntraBetaServicePrincipalPolicy.ps1 │ │ │ ├── Get-EntraBetaTrustFrameworkPolicy.ps1 │ │ │ ├── Get-EntraBetaTrustedCertificateAuthority.ps1 │ │ │ ├── Get-EntraBetaUserAuthenticationMethod.ps1 │ │ │ ├── Get-EntraBetaUserAuthenticationRequirement.ps1 │ │ │ ├── New-EntraBetaConditionalAccessPolicy.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── New-EntraBetaFeatureRolloutPolicy.ps1 │ │ │ ├── New-EntraBetaIdentityProvider.ps1 │ │ │ ├── New-EntraBetaInvitation.ps1 │ │ │ ├── New-EntraBetaNamedLocationPolicy.ps1 │ │ │ ├── New-EntraBetaOauth2PermissionGrant.ps1 │ │ │ ├── New-EntraBetaPermissionGrantConditionSet.ps1 │ │ │ ├── New-EntraBetaPermissionGrantPolicy.ps1 │ │ │ ├── New-EntraBetaPolicy.ps1 │ │ │ ├── New-EntraBetaTrustFrameworkPolicy.ps1 │ │ │ ├── New-EntraBetaTrustedCertificateAuthority.ps1 │ │ │ ├── Remove-EntraBetaConditionalAccessPolicy.ps1 │ │ │ ├── Remove-EntraBetaFeatureRolloutPolicy.ps1 │ │ │ ├── Remove-EntraBetaFeatureRolloutPolicyDirectoryObject.ps1 │ │ │ ├── Remove-EntraBetaIdentityProvider.ps1 │ │ │ ├── Remove-EntraBetaNamedLocationPolicy.ps1 │ │ │ ├── Remove-EntraBetaOAuth2PermissionGrant.ps1 │ │ │ ├── Remove-EntraBetaPermissionGrantConditionSet.ps1 │ │ │ ├── Remove-EntraBetaPermissionGrantPolicy.ps1 │ │ │ ├── Remove-EntraBetaPolicy.ps1 │ │ │ ├── Remove-EntraBetaServicePrincipalPolicy.ps1 │ │ │ ├── Remove-EntraBetaTrustFrameworkPolicy.ps1 │ │ │ ├── Remove-EntraBetaTrustedCertificateAuthority.ps1 │ │ │ ├── Reset-EntraBetaStrongAuthenticationMethodByUpn.ps1 │ │ │ ├── Set-EntraBetaAuthorizationPolicy.ps1 │ │ │ ├── Set-EntraBetaConditionalAccessPolicy.ps1 │ │ │ ├── Set-EntraBetaFeatureRolloutPolicy.ps1 │ │ │ ├── Set-EntraBetaIdentityProvider.ps1 │ │ │ ├── Set-EntraBetaNamedLocationPolicy.ps1 │ │ │ ├── Set-EntraBetaPermissionGrantConditionSet.ps1 │ │ │ ├── Set-EntraBetaPermissionGrantPolicy.ps1 │ │ │ ├── Set-EntraBetaPolicy.ps1 │ │ │ ├── Set-EntraBetaTrustFrameworkPolicy.ps1 │ │ │ ├── Set-EntraBetaTrustedCertificateAuthority.ps1 │ │ │ ├── Update-EntraBetaOauth2PermissionGrant.ps1 │ │ │ └── Update-EntraBetaUserAuthenticationRequirement.ps1 │ │ ├── Test-EntraScript.ps1 │ │ └── Users │ │ │ ├── Get-EntraBetaDeletedUser.ps1 │ │ │ ├── Get-EntraBetaInactiveSignInUser.ps1 │ │ │ ├── Get-EntraBetaUser.ps1 │ │ │ ├── Get-EntraBetaUserAdministrativeUnit.ps1 │ │ │ ├── Get-EntraBetaUserAppRoleAssignment.ps1 │ │ │ ├── Get-EntraBetaUserCreatedObject.ps1 │ │ │ ├── Get-EntraBetaUserDirectReport.ps1 │ │ │ ├── Get-EntraBetaUserExtension.ps1 │ │ │ ├── Get-EntraBetaUserGroup.ps1 │ │ │ ├── Get-EntraBetaUserInactiveSignIn.ps1 │ │ │ ├── Get-EntraBetaUserLicenseDetail.ps1 │ │ │ ├── Get-EntraBetaUserManager.ps1 │ │ │ ├── Get-EntraBetaUserMembership.ps1 │ │ │ ├── Get-EntraBetaUserOAuth2PermissionGrant.ps1 │ │ │ ├── Get-EntraBetaUserOwnedDevice.ps1 │ │ │ ├── Get-EntraBetaUserOwnedObject.ps1 │ │ │ ├── Get-EntraBetaUserRegisteredDevice.ps1 │ │ │ ├── Get-EntraBetaUserRole.ps1 │ │ │ ├── Get-EntraBetaUserSponsor.ps1 │ │ │ ├── Get-EntraBetaUserThumbnailPhoto.ps1 │ │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ │ ├── New-EntraBetaUser.ps1 │ │ │ ├── New-EntraBetaUserAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraBetaUser.ps1 │ │ │ ├── Remove-EntraBetaUserAppRoleAssignment.ps1 │ │ │ ├── Remove-EntraBetaUserExtension.ps1 │ │ │ ├── Remove-EntraBetaUserManager.ps1 │ │ │ ├── Remove-EntraBetaUserSponsor.ps1 │ │ │ ├── Set-EntraBetaSignedInUserPassword.ps1 │ │ │ ├── Set-EntraBetaUser.ps1 │ │ │ ├── Set-EntraBetaUserExtension.ps1 │ │ │ ├── Set-EntraBetaUserLicense.ps1 │ │ │ ├── Set-EntraBetaUserManager.ps1 │ │ │ ├── Set-EntraBetaUserPasswordProfile.ps1 │ │ │ ├── Set-EntraBetaUserSponsor.ps1 │ │ │ ├── Set-EntraBetaUserThumbnailPhoto.ps1 │ │ │ └── Update-EntraBetaUserFromFederated.ps1 │ ├── UnMappedFiles │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ └── Test-EntraScript.ps1 │ └── config │ │ ├── ModuleMetadata.json │ │ ├── ModuleSettings.json │ │ ├── dependencyMapping.json │ │ └── moduleMapping.json ├── breadcrumb │ └── toc.yml ├── docfx.json ├── docs │ ├── entra-powershell-beta │ │ ├── Applications │ │ │ ├── Add-EntraBetaApplicationOwner.md │ │ │ ├── Add-EntraBetaApplicationPolicy.md │ │ │ ├── Add-EntraBetaServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Add-EntraBetaServicePrincipalOwner.md │ │ │ ├── Get-EntraBetaApplication.md │ │ │ ├── Get-EntraBetaApplicationExtensionProperty.md │ │ │ ├── Get-EntraBetaApplicationKeyCredential.md │ │ │ ├── Get-EntraBetaApplicationLogo.md │ │ │ ├── Get-EntraBetaApplicationOwner.md │ │ │ ├── Get-EntraBetaApplicationPasswordCredential.md │ │ │ ├── Get-EntraBetaApplicationPolicy.md │ │ │ ├── Get-EntraBetaApplicationProxyApplication.md │ │ │ ├── Get-EntraBetaApplicationProxyApplicationConnectorGroup.md │ │ │ ├── Get-EntraBetaApplicationProxyConnector.md │ │ │ ├── Get-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── Get-EntraBetaApplicationProxyConnectorGroupMembers.md │ │ │ ├── Get-EntraBetaApplicationProxyConnectorMemberOf.md │ │ │ ├── Get-EntraBetaApplicationServiceEndpoint.md │ │ │ ├── Get-EntraBetaApplicationTemplate.md │ │ │ ├── Get-EntraBetaDeletedApplication.md │ │ │ ├── Get-EntraBetaDeletedServicePrincipal.md │ │ │ ├── Get-EntraBetaPasswordSingleSignOnCredential.md │ │ │ ├── Get-EntraBetaServicePrincipal.md │ │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignedTo.md │ │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignment.md │ │ │ ├── Get-EntraBetaServicePrincipalCreatedObject.md │ │ │ ├── Get-EntraBetaServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Get-EntraBetaServicePrincipalKeyCredential.md │ │ │ ├── Get-EntraBetaServicePrincipalMembership.md │ │ │ ├── Get-EntraBetaServicePrincipalOAuth2PermissionGrant.md │ │ │ ├── Get-EntraBetaServicePrincipalOwnedObject.md │ │ │ ├── Get-EntraBetaServicePrincipalOwner.md │ │ │ ├── Get-EntraBetaServicePrincipalPasswordCredential.md │ │ │ ├── Grant-EntraBetaMcpServerPermission.md │ │ │ ├── New-EntraBetaApplication.md │ │ │ ├── New-EntraBetaApplicationExtensionProperty.md │ │ │ ├── New-EntraBetaApplicationFromApplicationTemplate.md │ │ │ ├── New-EntraBetaApplicationKey.md │ │ │ ├── New-EntraBetaApplicationKeyCredential.md │ │ │ ├── New-EntraBetaApplicationPassword.md │ │ │ ├── New-EntraBetaApplicationPasswordCredential.md │ │ │ ├── New-EntraBetaApplicationProxyApplication.md │ │ │ ├── New-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── New-EntraBetaPasswordSingleSignOnCredential.md │ │ │ ├── New-EntraBetaServicePrincipal.md │ │ │ ├── New-EntraBetaServicePrincipalAppRoleAssignment.md │ │ │ ├── New-EntraBetaServicePrincipalPasswordCredential.md │ │ │ ├── Remove-EntraBetaApplication.md │ │ │ ├── Remove-EntraBetaApplicationExtensionProperty.md │ │ │ ├── Remove-EntraBetaApplicationKey.md │ │ │ ├── Remove-EntraBetaApplicationKeyCredential.md │ │ │ ├── Remove-EntraBetaApplicationOwner.md │ │ │ ├── Remove-EntraBetaApplicationPassword.md │ │ │ ├── Remove-EntraBetaApplicationPasswordCredential.md │ │ │ ├── Remove-EntraBetaApplicationPolicy.md │ │ │ ├── Remove-EntraBetaApplicationProxyApplication.md │ │ │ ├── Remove-EntraBetaApplicationProxyApplicationConnectorGroup.md │ │ │ ├── Remove-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── Remove-EntraBetaApplicationVerifiedPublisher.md │ │ │ ├── Remove-EntraBetaDeletedApplication.md │ │ │ ├── Remove-EntraBetaPasswordSingleSignOnCredential.md │ │ │ ├── Remove-EntraBetaServicePrincipal.md │ │ │ ├── Remove-EntraBetaServicePrincipalAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Remove-EntraBetaServicePrincipalOwner.md │ │ │ ├── Remove-EntraBetaServicePrincipalPasswordCredential.md │ │ │ ├── Restore-EntraBetaDeletedApplication.md │ │ │ ├── Revoke-EntraBetaMCPServerPermission.md │ │ │ ├── Select-EntraBetaGroupIdsServicePrincipalIsMemberOf.md │ │ │ ├── Set-EntraBetaApplication.md │ │ │ ├── Set-EntraBetaApplicationLogo.md │ │ │ ├── Set-EntraBetaApplicationProxyApplication.md │ │ │ ├── Set-EntraBetaApplicationProxyApplicationConnectorGroup.md │ │ │ ├── Set-EntraBetaApplicationProxyApplicationSingleSignOn.md │ │ │ ├── Set-EntraBetaApplicationProxyConnector.md │ │ │ ├── Set-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── Set-EntraBetaApplicationVerifiedPublisher.md │ │ │ ├── Set-EntraBetaPasswordSingleSignOnCredential.md │ │ │ └── Set-EntraBetaServicePrincipal.md │ │ ├── Authentication │ │ │ ├── Connect-Entra.md │ │ │ ├── Disconnect-Entra.md │ │ │ ├── Get-EntraContext.md │ │ │ ├── Revoke-EntraBetaSignedInUserAllRefreshToken.md │ │ │ └── Revoke-EntraBetaUserAllRefreshToken.md │ │ ├── DirectoryManagement │ │ │ ├── Add-EntraBetaAdministrativeUnitMember.md │ │ │ ├── Add-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Add-EntraBetaDeviceRegisteredOwner.md │ │ │ ├── Add-EntraBetaDeviceRegisteredUser.md │ │ │ ├── Add-EntraBetaDirectoryRoleMember.md │ │ │ ├── Add-EntraBetaScopedRoleMembership.md │ │ │ ├── Confirm-EntraBetaDomain.md │ │ │ ├── Enable-EntraBetaDirectoryRole.md │ │ │ ├── Get-EntraBetaAccountSku.md │ │ │ ├── Get-EntraBetaAdministrativeUnit.md │ │ │ ├── Get-EntraBetaAdministrativeUnitMember.md │ │ │ ├── Get-EntraBetaAttributeSet.md │ │ │ ├── Get-EntraBetaContact.md │ │ │ ├── Get-EntraBetaContactDirectReport.md │ │ │ ├── Get-EntraBetaContactManager.md │ │ │ ├── Get-EntraBetaContactMembership.md │ │ │ ├── Get-EntraBetaContract.md │ │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinition.md │ │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Get-EntraBetaDeletedAdministrativeUnit.md │ │ │ ├── Get-EntraBetaDeletedDevice.md │ │ │ ├── Get-EntraBetaDeletedDirectoryObject.md │ │ │ ├── Get-EntraBetaDevice.md │ │ │ ├── Get-EntraBetaDeviceRegisteredOwner.md │ │ │ ├── Get-EntraBetaDeviceRegisteredUser.md │ │ │ ├── Get-EntraBetaDirSyncConfiguration.md │ │ │ ├── Get-EntraBetaDirSyncFeature.md │ │ │ ├── Get-EntraBetaDirectoryObject.md │ │ │ ├── Get-EntraBetaDirectoryObjectOnPremisesProvisioningError.md │ │ │ ├── Get-EntraBetaDirectoryRole.md │ │ │ ├── Get-EntraBetaDirectoryRoleMember.md │ │ │ ├── Get-EntraBetaDirectoryRoleTemplate.md │ │ │ ├── Get-EntraBetaDirectorySetting.md │ │ │ ├── Get-EntraBetaDirectorySettingTemplate.md │ │ │ ├── Get-EntraBetaDomain.md │ │ │ ├── Get-EntraBetaDomainFederationSettings.md │ │ │ ├── Get-EntraBetaDomainNameReference.md │ │ │ ├── Get-EntraBetaDomainServiceConfigurationRecord.md │ │ │ ├── Get-EntraBetaDomainVerificationDnsRecord.md │ │ │ ├── Get-EntraBetaFederationProperty.md │ │ │ ├── Get-EntraBetaPartnerInformation.md │ │ │ ├── Get-EntraBetaPasswordPolicy.md │ │ │ ├── Get-EntraBetaScopedRoleMembership.md │ │ │ ├── Get-EntraBetaSubscribedSku.md │ │ │ ├── Get-EntraBetaSubscription.md │ │ │ ├── Get-EntraBetaTenantDetail.md │ │ │ ├── New-EntraBetaAdministrativeUnit.md │ │ │ ├── New-EntraBetaAdministrativeUnitMember.md │ │ │ ├── New-EntraBetaAttributeSet.md │ │ │ ├── New-EntraBetaCustomSecurityAttributeDefinition.md │ │ │ ├── New-EntraBetaDevice.md │ │ │ ├── New-EntraBetaDirectorySetting.md │ │ │ ├── New-EntraBetaDomain.md │ │ │ ├── Remove-EntraBetaAdministrativeUnit.md │ │ │ ├── Remove-EntraBetaAdministrativeUnitMember.md │ │ │ ├── Remove-EntraBetaContact.md │ │ │ ├── Remove-EntraBetaDeletedDirectoryObject.md │ │ │ ├── Remove-EntraBetaDevice.md │ │ │ ├── Remove-EntraBetaDeviceRegisteredOwner.md │ │ │ ├── Remove-EntraBetaDeviceRegisteredUser.md │ │ │ ├── Remove-EntraBetaDirectoryRoleMember.md │ │ │ ├── Remove-EntraBetaDirectorySetting.md │ │ │ ├── Remove-EntraBetaDomain.md │ │ │ ├── Remove-EntraBetaScopedRoleMembership.md │ │ │ ├── Resolve-EntraBetaTenant.md │ │ │ ├── Restore-EntraBetaDeletedDirectoryObject.md │ │ │ ├── Set-EntraBetaAdministrativeUnit.md │ │ │ ├── Set-EntraBetaAttributeSet.md │ │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinition.md │ │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Set-EntraBetaDevice.md │ │ │ ├── Set-EntraBetaDirSyncConfiguration.md │ │ │ ├── Set-EntraBetaDirSyncEnabled.md │ │ │ ├── Set-EntraBetaDirSyncFeature.md │ │ │ ├── Set-EntraBetaDirectorySetting.md │ │ │ ├── Set-EntraBetaDomain.md │ │ │ ├── Set-EntraBetaDomainFederationSettings.md │ │ │ ├── Set-EntraBetaPartnerInformation.md │ │ │ └── Set-EntraBetaTenantDetail.md │ │ ├── Enable-EntraAzureADAlias.md │ │ ├── Governance │ │ │ ├── Get-EntraBetaDirectoryRoleAssignment.md │ │ │ ├── Get-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── Get-EntraBetaPrivilegedResource.md │ │ │ ├── Get-EntraBetaPrivilegedRole.md │ │ │ ├── Get-EntraBetaPrivilegedRoleAssignmentRequest.md │ │ │ ├── Get-EntraBetaPrivilegedRoleDefinition.md │ │ │ ├── Get-EntraBetaPrivilegedRoleSetting.md │ │ │ ├── New-EntraBetaDirectoryRoleAssignment.md │ │ │ ├── New-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── New-EntraBetaPrivilegedRoleAssignment.md │ │ │ ├── Remove-EntraBetaDirectoryRoleAssignment.md │ │ │ ├── Remove-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── Set-EntraBetaAppRoleToApplicationUser.md │ │ │ ├── Set-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── Set-EntraBetaPrivilegedRoleAssignmentRequest.md │ │ │ └── Set-EntraBetaPrivilegedRoleSetting.md │ │ ├── Groups │ │ │ ├── Add-EntraBetaGroupMember.md │ │ │ ├── Add-EntraBetaGroupOwner.md │ │ │ ├── Add-EntraBetaLifecyclePolicyGroup.md │ │ │ ├── Get-EntraBetaDeletedGroup.md │ │ │ ├── Get-EntraBetaGroup.md │ │ │ ├── Get-EntraBetaGroupAppRoleAssignment.md │ │ │ ├── Get-EntraBetaGroupLifecyclePolicy.md │ │ │ ├── Get-EntraBetaGroupMember.md │ │ │ ├── Get-EntraBetaGroupOwner.md │ │ │ ├── Get-EntraBetaGroupPermissionGrant.md │ │ │ ├── Get-EntraBetaLifecyclePolicyGroup.md │ │ │ ├── Get-EntraBetaObjectSetting.md │ │ │ ├── New-EntraBetaGroup.md │ │ │ ├── New-EntraBetaGroupAppRoleAssignment.md │ │ │ ├── New-EntraBetaGroupLifecyclePolicy.md │ │ │ ├── New-EntraBetaObjectSetting.md │ │ │ ├── Remove-EntraBetaGroup.md │ │ │ ├── Remove-EntraBetaGroupAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaGroupLifecyclePolicy.md │ │ │ ├── Remove-EntraBetaGroupMember.md │ │ │ ├── Remove-EntraBetaGroupOwner.md │ │ │ ├── Remove-EntraBetaLifecyclePolicyGroup.md │ │ │ ├── Remove-EntraBetaObjectSetting.md │ │ │ ├── Reset-EntraBetaLifeCycleGroup.md │ │ │ ├── Select-EntraBetaGroupIdsContactIsMemberOf.md │ │ │ ├── Select-EntraBetaGroupIdsGroupIsMemberOf.md │ │ │ ├── Select-EntraBetaGroupIdsUserIsMemberOf.md │ │ │ ├── Set-EntraBetaGroup.md │ │ │ ├── Set-EntraBetaGroupLifecyclePolicy.md │ │ │ └── Set-EntraBetaObjectSetting.md │ │ ├── NetworkAccess │ │ │ ├── Enable-EntraBetaGlobalSecureAccessTenant.md │ │ │ ├── Get-EntraBetaGlobalSecureAccessTenantStatus.md │ │ │ ├── Get-EntraBetaPrivateAccessApplication.md │ │ │ ├── Get-EntraBetaPrivateAccessApplicationSegment.md │ │ │ ├── New-EntraBetaPrivateAccessApplication.md │ │ │ ├── New-EntraBetaPrivateAccessApplicationSegment.md │ │ │ └── Remove-EntraBetaPrivateAccessApplicationSegment.md │ │ ├── Reports │ │ │ ├── Get-EntraBetaApplicationSignInDetailedSummary.md │ │ │ ├── Get-EntraBetaApplicationSignInSummary.md │ │ │ ├── Get-EntraBetaAuditDirectoryLog.md │ │ │ ├── Get-EntraBetaAuditSignInLog.md │ │ │ ├── Get-EntraBetaAuthenticationMethodUserRegistrationDetailReport.md │ │ │ └── Get-EntraBetaCrossTenantAccessActivity.md │ │ ├── SignIns │ │ │ ├── Add-EntraBetaFeatureRolloutPolicyDirectoryObject.md │ │ │ ├── Add-EntraBetaServicePrincipalPolicy.md │ │ │ ├── Get-EntraBetaAuthorizationPolicy.md │ │ │ ├── Get-EntraBetaConditionalAccessPolicy.md │ │ │ ├── Get-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── Get-EntraBetaIdentityProvider.md │ │ │ ├── Get-EntraBetaNamedLocationPolicy.md │ │ │ ├── Get-EntraBetaOAuth2PermissionGrant.md │ │ │ ├── Get-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── Get-EntraBetaPermissionGrantPolicy.md │ │ │ ├── Get-EntraBetaPolicy.md │ │ │ ├── Get-EntraBetaPolicyAppliedObject.md │ │ │ ├── Get-EntraBetaServicePrincipalPolicy.md │ │ │ ├── Get-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── Get-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── Get-EntraBetaUserAuthenticationMethod.md │ │ │ ├── Get-EntraBetaUserAuthenticationRequirement.md │ │ │ ├── New-EntraBetaConditionalAccessPolicy.md │ │ │ ├── New-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── New-EntraBetaIdentityProvider.md │ │ │ ├── New-EntraBetaInvitation.md │ │ │ ├── New-EntraBetaNamedLocationPolicy.md │ │ │ ├── New-EntraBetaOauth2PermissionGrant.md │ │ │ ├── New-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── New-EntraBetaPermissionGrantPolicy.md │ │ │ ├── New-EntraBetaPolicy.md │ │ │ ├── New-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── New-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── Remove-EntraBetaConditionalAccessPolicy.md │ │ │ ├── Remove-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── Remove-EntraBetaFeatureRolloutPolicyDirectoryObject.md │ │ │ ├── Remove-EntraBetaIdentityProvider.md │ │ │ ├── Remove-EntraBetaNamedLocationPolicy.md │ │ │ ├── Remove-EntraBetaOAuth2PermissionGrant.md │ │ │ ├── Remove-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── Remove-EntraBetaPermissionGrantPolicy.md │ │ │ ├── Remove-EntraBetaPolicy.md │ │ │ ├── Remove-EntraBetaServicePrincipalPolicy.md │ │ │ ├── Remove-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── Remove-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── Reset-EntraBetaStrongAuthenticationMethodByUpn.md │ │ │ ├── Set-EntraBetaAuthorizationPolicy.md │ │ │ ├── Set-EntraBetaConditionalAccessPolicy.md │ │ │ ├── Set-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── Set-EntraBetaIdentityProvider.md │ │ │ ├── Set-EntraBetaNamedLocationPolicy.md │ │ │ ├── Set-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── Set-EntraBetaPermissionGrantPolicy.md │ │ │ ├── Set-EntraBetaPolicy.md │ │ │ ├── Set-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── Set-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── Update-EntraBetaOauth2PermissionGrant.md │ │ │ └── Update-EntraBetaUserAuthenticationRequirement.md │ │ ├── Test-EntraScript.md │ │ └── Users │ │ │ ├── Get-EntraBetaDeletedUser.md │ │ │ ├── Get-EntraBetaInactiveSignInUser.md │ │ │ ├── Get-EntraBetaUser.md │ │ │ ├── Get-EntraBetaUserAdministrativeUnit.md │ │ │ ├── Get-EntraBetaUserAppRoleAssignment.md │ │ │ ├── Get-EntraBetaUserCreatedObject.md │ │ │ ├── Get-EntraBetaUserDirectReport.md │ │ │ ├── Get-EntraBetaUserExtension.md │ │ │ ├── Get-EntraBetaUserGroup.md │ │ │ ├── Get-EntraBetaUserInactiveSignIn.md │ │ │ ├── Get-EntraBetaUserLicenseDetail.md │ │ │ ├── Get-EntraBetaUserManager.md │ │ │ ├── Get-EntraBetaUserMembership.md │ │ │ ├── Get-EntraBetaUserOAuth2PermissionGrant.md │ │ │ ├── Get-EntraBetaUserOwnedDevice.md │ │ │ ├── Get-EntraBetaUserOwnedObject.md │ │ │ ├── Get-EntraBetaUserRegisteredDevice.md │ │ │ ├── Get-EntraBetaUserRole.md │ │ │ ├── Get-EntraBetaUserSponsor.md │ │ │ ├── Get-EntraBetaUserThumbnailPhoto.md │ │ │ ├── New-EntraBetaUser.md │ │ │ ├── New-EntraBetaUserAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaUser.md │ │ │ ├── Remove-EntraBetaUserAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaUserExtension.md │ │ │ ├── Remove-EntraBetaUserManager.md │ │ │ ├── Remove-EntraBetaUserSponsor.md │ │ │ ├── Set-EntraBetaSignedInUserPassword.md │ │ │ ├── Set-EntraBetaUser.md │ │ │ ├── Set-EntraBetaUserExtension.md │ │ │ ├── Set-EntraBetaUserLicense.md │ │ │ ├── Set-EntraBetaUserManager.md │ │ │ ├── Set-EntraBetaUserPasswordProfile.md │ │ │ ├── Set-EntraBetaUserSponsor.md │ │ │ ├── Set-EntraBetaUserThumbnailPhoto.md │ │ │ └── Update-EntraBetaUserFromFederated.md │ └── entra-powershell-v1.0 │ │ ├── Applications │ │ ├── Add-EntraApplicationOwner.md │ │ ├── Add-EntraServicePrincipalDelegatedPermissionClassification.md │ │ ├── Add-EntraServicePrincipalOwner.md │ │ ├── Get-EntraApplication.md │ │ ├── Get-EntraApplicationExtensionProperty.md │ │ ├── Get-EntraApplicationKeyCredential.md │ │ ├── Get-EntraApplicationLogo.md │ │ ├── Get-EntraApplicationOwner.md │ │ ├── Get-EntraApplicationPasswordCredential.md │ │ ├── Get-EntraApplicationServiceEndpoint.md │ │ ├── Get-EntraApplicationTemplate.md │ │ ├── Get-EntraDeletedApplication.md │ │ ├── Get-EntraDeletedServicePrincipal.md │ │ ├── Get-EntraServicePrincipal.md │ │ ├── Get-EntraServicePrincipalAppRoleAssignedTo.md │ │ ├── Get-EntraServicePrincipalAppRoleAssignment.md │ │ ├── Get-EntraServicePrincipalCreatedObject.md │ │ ├── Get-EntraServicePrincipalDelegatedPermissionClassification.md │ │ ├── Get-EntraServicePrincipalKeyCredential.md │ │ ├── Get-EntraServicePrincipalMembership.md │ │ ├── Get-EntraServicePrincipalOAuth2PermissionGrant.md │ │ ├── Get-EntraServicePrincipalOwnedObject.md │ │ ├── Get-EntraServicePrincipalOwner.md │ │ ├── Get-EntraServicePrincipalPasswordCredential.md │ │ ├── New-EntraApplication.md │ │ ├── New-EntraApplicationExtensionProperty.md │ │ ├── New-EntraApplicationFromApplicationTemplate.md │ │ ├── New-EntraApplicationKey.md │ │ ├── New-EntraApplicationKeyCredential.md │ │ ├── New-EntraApplicationPassword.md │ │ ├── New-EntraApplicationPasswordCredential.md │ │ ├── New-EntraServicePrincipal.md │ │ ├── New-EntraServicePrincipalAppRoleAssignment.md │ │ ├── New-EntraServicePrincipalKeyCredential.md │ │ ├── New-EntraServicePrincipalPasswordCredential.md │ │ ├── Remove-EntraApplication.md │ │ ├── Remove-EntraApplicationExtensionProperty.md │ │ ├── Remove-EntraApplicationKey.md │ │ ├── Remove-EntraApplicationKeyCredential.md │ │ ├── Remove-EntraApplicationOwner.md │ │ ├── Remove-EntraApplicationPassword.md │ │ ├── Remove-EntraApplicationPasswordCredential.md │ │ ├── Remove-EntraApplicationVerifiedPublisher.md │ │ ├── Remove-EntraDeletedApplication.md │ │ ├── Remove-EntraServicePrincipal.md │ │ ├── Remove-EntraServicePrincipalAppRoleAssignment.md │ │ ├── Remove-EntraServicePrincipalDelegatedPermissionClassification.md │ │ ├── Remove-EntraServicePrincipalKeyCredential.md │ │ ├── Remove-EntraServicePrincipalOwner.md │ │ ├── Remove-EntraServicePrincipalPasswordCredential.md │ │ ├── Restore-EntraDeletedApplication.md │ │ ├── Select-EntraGroupIdsServicePrincipalIsMemberOf.md │ │ ├── Set-EntraApplication.md │ │ ├── Set-EntraApplicationLogo.md │ │ ├── Set-EntraApplicationVerifiedPublisher.md │ │ └── Set-EntraServicePrincipal.md │ │ ├── Authentication │ │ ├── Add-EntraEnvironment.md │ │ ├── Connect-Entra.md │ │ ├── Disconnect-Entra.md │ │ ├── Find-EntraPermission.md │ │ ├── Get-EntraContext.md │ │ ├── Get-EntraEnvironment.md │ │ ├── Revoke-EntraSignedInUserAllRefreshToken.md │ │ └── Revoke-EntraUserAllRefreshToken.md │ │ ├── CertificateBasedAuthentication │ │ ├── Get-EntraUserCBAAuthorizationInfo.md │ │ ├── Get-EntraUserCertificateUserIdsFromCertificate.md │ │ └── Set-EntraUserCBACertificateUserId.md │ │ ├── DirectoryManagement │ │ ├── Add-EntraAdministrativeUnitMember.md │ │ ├── Add-EntraCustomSecurityAttributeDefinitionAllowedValue.md │ │ ├── Add-EntraDeviceRegisteredOwner.md │ │ ├── Add-EntraDeviceRegisteredUser.md │ │ ├── Add-EntraDirectoryRoleMember.md │ │ ├── Add-EntraScopedRoleMembership.md │ │ ├── Confirm-EntraDomain.md │ │ ├── Enable-EntraDirectoryRole.md │ │ ├── Get-CrossCloudVerificationCode.md │ │ ├── Get-EntraAccountSku.md │ │ ├── Get-EntraAdministrativeUnit.md │ │ ├── Get-EntraAdministrativeUnitMember.md │ │ ├── Get-EntraAttributeSet.md │ │ ├── Get-EntraContact.md │ │ ├── Get-EntraContactDirectReport.md │ │ ├── Get-EntraContactManager.md │ │ ├── Get-EntraContactMembership.md │ │ ├── Get-EntraContactThumbnailPhoto.md │ │ ├── Get-EntraContract.md │ │ ├── Get-EntraCustomSecurityAttributeDefinition.md │ │ ├── Get-EntraCustomSecurityAttributeDefinitionAllowedValue.md │ │ ├── Get-EntraDeletedAdministrativeUnit.md │ │ ├── Get-EntraDeletedDevice.md │ │ ├── Get-EntraDeletedDirectoryObject.md │ │ ├── Get-EntraDevice.md │ │ ├── Get-EntraDeviceRegisteredOwner.md │ │ ├── Get-EntraDeviceRegisteredUser.md │ │ ├── Get-EntraDirSyncConfiguration.md │ │ ├── Get-EntraDirSyncFeature.md │ │ ├── Get-EntraDirectoryObject.md │ │ ├── Get-EntraDirectoryObjectOnPremisesProvisioningError.md │ │ ├── Get-EntraDirectoryRole.md │ │ ├── Get-EntraDirectoryRoleMember.md │ │ ├── Get-EntraDirectoryRoleTemplate.md │ │ ├── Get-EntraDomain.md │ │ ├── Get-EntraDomainFederationSettings.md │ │ ├── Get-EntraDomainNameReference.md │ │ ├── Get-EntraDomainServiceConfigurationRecord.md │ │ ├── Get-EntraDomainVerificationDnsRecord.md │ │ ├── Get-EntraExtensionProperty.md │ │ ├── Get-EntraFederationProperty.md │ │ ├── Get-EntraPartnerInformation.md │ │ ├── Get-EntraPasswordPolicy.md │ │ ├── Get-EntraScopedRoleMembership.md │ │ ├── Get-EntraSubscribedSku.md │ │ ├── Get-EntraSubscription.md │ │ ├── Get-EntraTenantDetail.md │ │ ├── New-EntraAdministrativeUnit.md │ │ ├── New-EntraAttributeSet.md │ │ ├── New-EntraCustomSecurityAttributeDefinition.md │ │ ├── New-EntraDevice.md │ │ ├── New-EntraDomain.md │ │ ├── Remove-EntraAdministrativeUnit.md │ │ ├── Remove-EntraAdministrativeUnitMember.md │ │ ├── Remove-EntraContact.md │ │ ├── Remove-EntraDeletedDirectoryObject.md │ │ ├── Remove-EntraDevice.md │ │ ├── Remove-EntraDeviceRegisteredOwner.md │ │ ├── Remove-EntraDeviceRegisteredUser.md │ │ ├── Remove-EntraDirectoryRoleMember.md │ │ ├── Remove-EntraDomain.md │ │ ├── Remove-EntraExternalDomainFederation.md │ │ ├── Remove-EntraScopedRoleMembership.md │ │ ├── Resolve-EntraTenant.md │ │ ├── Restore-EntraDeletedDirectoryObject.md │ │ ├── Set-EntraAdministrativeUnit.md │ │ ├── Set-EntraAttributeSet.md │ │ ├── Set-EntraCustomSecurityAttributeDefinition.md │ │ ├── Set-EntraCustomSecurityAttributeDefinitionAllowedValue.md │ │ ├── Set-EntraDevice.md │ │ ├── Set-EntraDirSyncConfiguration.md │ │ ├── Set-EntraDirSyncEnabled.md │ │ ├── Set-EntraDirSyncFeature.md │ │ ├── Set-EntraDomain.md │ │ ├── Set-EntraDomainFederationSettings.md │ │ ├── Set-EntraPartnerInformation.md │ │ └── Set-EntraTenantDetail.md │ │ ├── Enable-EntraAzureADAlias.md │ │ ├── Governance │ │ ├── Get-EntraDirectoryRoleAssignment.md │ │ ├── Get-EntraDirectoryRoleDefinition.md │ │ ├── New-EntraDirectoryRoleAssignment.md │ │ ├── New-EntraDirectoryRoleDefinition.md │ │ ├── Remove-EntraDirectoryRoleAssignment.md │ │ ├── Remove-EntraDirectoryRoleDefinition.md │ │ └── Set-EntraDirectoryRoleDefinition.md │ │ ├── Groups │ │ ├── Add-EntraGroupMember.md │ │ ├── Add-EntraGroupOwner.md │ │ ├── Add-EntraLifecyclePolicyGroup.md │ │ ├── Get-EntraDeletedGroup.md │ │ ├── Get-EntraGroup.md │ │ ├── Get-EntraGroupAppRoleAssignment.md │ │ ├── Get-EntraGroupLifecyclePolicy.md │ │ ├── Get-EntraGroupMember.md │ │ ├── Get-EntraGroupOwner.md │ │ ├── Get-EntraGroupPermissionGrant.md │ │ ├── Get-EntraLifecyclePolicyGroup.md │ │ ├── Get-EntraObjectSetting.md │ │ ├── New-EntraGroup.md │ │ ├── New-EntraGroupAppRoleAssignment.md │ │ ├── New-EntraGroupLifecyclePolicy.md │ │ ├── Remove-EntraGroup.md │ │ ├── Remove-EntraGroupAppRoleAssignment.md │ │ ├── Remove-EntraGroupLifecyclePolicy.md │ │ ├── Remove-EntraGroupMember.md │ │ ├── Remove-EntraGroupOwner.md │ │ ├── Remove-EntraLifecyclePolicyGroup.md │ │ ├── Reset-EntraLifeCycleGroup.md │ │ ├── Select-EntraGroupIdsContactIsMemberOf.md │ │ ├── Select-EntraGroupIdsGroupIsMemberOf.md │ │ ├── Select-EntraGroupIdsUserIsMemberOf.md │ │ ├── Set-EntraGroup.md │ │ └── Set-EntraGroupLifecyclePolicy.md │ │ ├── Reports │ │ ├── Get-EntraAuditDirectoryLog.md │ │ ├── Get-EntraAuditSignInLog.md │ │ └── Get-EntraAuthenticationMethodUserRegistrationDetailReport.md │ │ ├── SignIns │ │ ├── Get-EntraAuthorizationPolicy.md │ │ ├── Get-EntraConditionalAccessPolicy.md │ │ ├── Get-EntraFeatureRolloutPolicy.md │ │ ├── Get-EntraIdentityProvider.md │ │ ├── Get-EntraNamedLocationPolicy.md │ │ ├── Get-EntraOAuth2PermissionGrant.md │ │ ├── Get-EntraPermissionGrantConditionSet.md │ │ ├── Get-EntraPermissionGrantPolicy.md │ │ ├── Get-EntraPolicy.md │ │ ├── Get-EntraTrustedCertificateAuthority.md │ │ ├── Get-EntraUserAuthenticationMethod.md │ │ ├── New-EntraConditionalAccessPolicy.md │ │ ├── New-EntraFeatureRolloutPolicy.md │ │ ├── New-EntraIdentityProvider.md │ │ ├── New-EntraInvitation.md │ │ ├── New-EntraNamedLocationPolicy.md │ │ ├── New-EntraOauth2PermissionGrant.md │ │ ├── New-EntraPermissionGrantConditionSet.md │ │ ├── New-EntraPermissionGrantPolicy.md │ │ ├── New-EntraPolicy.md │ │ ├── New-EntraTrustedCertificateAuthority.md │ │ ├── Remove-EntraConditionalAccessPolicy.md │ │ ├── Remove-EntraFeatureRolloutPolicy.md │ │ ├── Remove-EntraFeatureRolloutPolicyDirectoryObject.md │ │ ├── Remove-EntraIdentityProvider.md │ │ ├── Remove-EntraNamedLocationPolicy.md │ │ ├── Remove-EntraOAuth2PermissionGrant.md │ │ ├── Remove-EntraPermissionGrantConditionSet.md │ │ ├── Remove-EntraPermissionGrantPolicy.md │ │ ├── Remove-EntraPolicy.md │ │ ├── Remove-EntraTrustedCertificateAuthority.md │ │ ├── Reset-EntraStrongAuthenticationMethodByUpn.md │ │ ├── Set-EntraAuthorizationPolicy.md │ │ ├── Set-EntraConditionalAccessPolicy.md │ │ ├── Set-EntraFeatureRolloutPolicy.md │ │ ├── Set-EntraIdentityProvider.md │ │ ├── Set-EntraNamedLocationPolicy.md │ │ ├── Set-EntraPermissionGrantConditionSet.md │ │ ├── Set-EntraPermissionGrantPolicy.md │ │ ├── Set-EntraPolicy.md │ │ ├── Set-EntraTrustedCertificateAuthority.md │ │ └── Update-EntraOauth2PermissionGrant.md │ │ ├── Test-EntraScript.md │ │ └── Users │ │ ├── Get-EntraDeletedUser.md │ │ ├── Get-EntraInactiveSignInUser.md │ │ ├── Get-EntraUser.md │ │ ├── Get-EntraUserAdministrativeUnit.md │ │ ├── Get-EntraUserAppRoleAssignment.md │ │ ├── Get-EntraUserCreatedObject.md │ │ ├── Get-EntraUserDirectReport.md │ │ ├── Get-EntraUserExtension.md │ │ ├── Get-EntraUserGroup.md │ │ ├── Get-EntraUserInactiveSignIn.md │ │ ├── Get-EntraUserLicenseDetail.md │ │ ├── Get-EntraUserManager.md │ │ ├── Get-EntraUserMembership.md │ │ ├── Get-EntraUserOAuth2PermissionGrant.md │ │ ├── Get-EntraUserOwnedDevice.md │ │ ├── Get-EntraUserOwnedObject.md │ │ ├── Get-EntraUserRegisteredDevice.md │ │ ├── Get-EntraUserRole.md │ │ ├── Get-EntraUserSponsor.md │ │ ├── Get-EntraUserThumbnailPhoto.md │ │ ├── New-EntraUser.md │ │ ├── New-EntraUserAppRoleAssignment.md │ │ ├── Remove-EntraUser.md │ │ ├── Remove-EntraUserAppRoleAssignment.md │ │ ├── Remove-EntraUserExtension.md │ │ ├── Remove-EntraUserManager.md │ │ ├── Remove-EntraUserSponsor.md │ │ ├── Set-EntraSignedInUserPassword.md │ │ ├── Set-EntraUser.md │ │ ├── Set-EntraUserExtension.md │ │ ├── Set-EntraUserLicense.md │ │ ├── Set-EntraUserManager.md │ │ ├── Set-EntraUserPasswordProfile.md │ │ ├── Set-EntraUserSponsor.md │ │ ├── Set-EntraUserThumbnailPhoto.md │ │ └── Update-EntraUserFromFederated.md └── mapping │ └── monikerMapping.json ├── module_legacy ├── .sourcemap-maml-0.json ├── Entra │ ├── AdditionalFunctions │ │ ├── Add-EntraAdministrativeUnitMember.ps1 │ │ ├── Add-EntraCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ ├── Add-EntraEnvironment.ps1 │ │ ├── Add-EntraScopedRoleMembership.ps1 │ │ ├── Connect-Entra.ps1 │ │ ├── Disconnect-Entra.ps1 │ │ ├── Find-EntraPermission.ps1 │ │ ├── Get-EntraAccountSku.ps1 │ │ ├── Get-EntraAdministrativeUnit.ps1 │ │ ├── Get-EntraAdministrativeUnitMember.ps1 │ │ ├── Get-EntraApplicationTemplate.ps1 │ │ ├── Get-EntraAttributeSet.ps1 │ │ ├── Get-EntraAuditDirectoryLog.ps1 │ │ ├── Get-EntraAuditSignInLog.ps1 │ │ ├── Get-EntraAuthorizationPolicy.ps1 │ │ ├── Get-EntraContext.ps1 │ │ ├── Get-EntraCustomSecurityAttributeDefinition.ps1 │ │ ├── Get-EntraCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ ├── Get-EntraDirSyncConfiguration.ps1 │ │ ├── Get-EntraDirSyncFeature.ps1 │ │ ├── Get-EntraDirectoryObjectOnPremisesProvisioningError.ps1 │ │ ├── Get-EntraDomainFederationSettings.ps1 │ │ ├── Get-EntraEnvironment.ps1 │ │ ├── Get-EntraFeatureRolloutPolicy.ps1 │ │ ├── Get-EntraFederationProperty.ps1 │ │ ├── Get-EntraObjectSetting.ps1 │ │ ├── Get-EntraPartnerInformation.ps1 │ │ ├── Get-EntraPasswordPolicy.ps1 │ │ ├── Get-EntraPolicy.ps1 │ │ ├── Get-EntraScopedRoleMembership.ps1 │ │ ├── Get-EntraUserAuthenticationMethod.ps1 │ │ ├── New-EntraAdministrativeUnit.ps1 │ │ ├── New-EntraApplicationFromApplicationTemplate.ps1 │ │ ├── New-EntraAttributeSet.ps1 │ │ ├── New-EntraCustomHeaders.ps1 │ │ ├── New-EntraCustomSecurityAttributeDefinition.ps1 │ │ ├── New-EntraFeatureRolloutPolicy.ps1 │ │ ├── New-EntraOauth2PermissionGrant.ps1 │ │ ├── New-EntraPolicy.ps1 │ │ ├── README.md │ │ ├── Remove-EntraAdministrativeUnit.ps1 │ │ ├── Remove-EntraAdministrativeUnitMember.ps1 │ │ ├── Remove-EntraFeatureRolloutPolicy.ps1 │ │ ├── Remove-EntraFeatureRolloutPolicyDirectoryObject.ps1 │ │ ├── Remove-EntraPolicy.ps1 │ │ ├── Remove-EntraScopedRoleMembership.ps1 │ │ ├── Reset-EntraStrongAuthenticationMethodByUpn.ps1 │ │ ├── Restore-EntraDeletedDirectoryObject.ps1 │ │ ├── Set-EntraAdministrativeUnit.ps1 │ │ ├── Set-EntraAttributeSet.ps1 │ │ ├── Set-EntraCustomSecurityAttributeDefinition.ps1 │ │ ├── Set-EntraCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ ├── Set-EntraDirSyncConfiguration.ps1 │ │ ├── Set-EntraDirSyncEnabled.ps1 │ │ ├── Set-EntraDirSyncFeature.ps1 │ │ ├── Set-EntraDomainFederationSettings.ps1 │ │ ├── Set-EntraFeatureRolloutPolicy.ps1 │ │ ├── Set-EntraPartnerInformation.ps1 │ │ ├── Set-EntraPolicy.ps1 │ │ ├── Set-EntraServicePrincipal.ps1 │ │ ├── Test-EntraScript.ps1 │ │ ├── Update-EntraOAuth2PermissionGrant.ps1 │ │ └── Update-EntraUserFromFederated.ps1 │ ├── config │ │ ├── ModuleMetadata.json │ │ ├── ModuleSettings.json │ │ ├── dependencyMapping.json │ │ └── moduleMapping.json │ └── customizations │ │ ├── Add-EntraApplicationOwner.ps1 │ │ ├── Add-EntraDeviceRegisteredOwner.ps1 │ │ ├── Add-EntraDeviceRegisteredUser.ps1 │ │ ├── Add-EntraDirectoryRoleMember.ps1 │ │ ├── Add-EntraGroupMember.ps1 │ │ ├── Add-EntraGroupOwner.ps1 │ │ ├── Add-EntraLifecyclePolicyGroup.ps1 │ │ ├── Add-EntraServicePrincipalOwner.ps1 │ │ ├── Confirm-EntraDomain.ps1 │ │ ├── Generic.ps1 │ │ ├── Get-EntraApplication.ps1 │ │ ├── Get-EntraApplicationKeyCredential.ps1 │ │ ├── Get-EntraApplicationLogo.ps1 │ │ ├── Get-EntraApplicationOwner.ps1 │ │ ├── Get-EntraApplicationPasswordCredential.ps1 │ │ ├── Get-EntraApplicationServiceEndpoint.ps1 │ │ ├── Get-EntraConditionalAccessPolicy.ps1 │ │ ├── Get-EntraContact.ps1 │ │ ├── Get-EntraContactDirectReport.ps1 │ │ ├── Get-EntraContactMembership.ps1 │ │ ├── Get-EntraDeletedApplication.ps1 │ │ ├── Get-EntraDeletedDirectoryObject.ps1 │ │ ├── Get-EntraDeletedGroup.ps1 │ │ ├── Get-EntraDevice.ps1 │ │ ├── Get-EntraDeviceRegisteredOwner.ps1 │ │ ├── Get-EntraDeviceRegisteredUser.ps1 │ │ ├── Get-EntraDirectoryRoleAssignment.ps1 │ │ ├── Get-EntraDirectoryRoleDefinition.ps1 │ │ ├── Get-EntraDirectoryRoleMember.ps1 │ │ ├── Get-EntraDomain.ps1 │ │ ├── Get-EntraDomainNameReference.ps1 │ │ ├── Get-EntraDomainServiceConfigurationRecord.ps1 │ │ ├── Get-EntraDomainVerificationDnsRecord.ps1 │ │ ├── Get-EntraExtensionProperty.ps1 │ │ ├── Get-EntraGroup.ps1 │ │ ├── Get-EntraGroupAppRoleAssignment.ps1 │ │ ├── Get-EntraGroupMember.ps1 │ │ ├── Get-EntraGroupOwner.ps1 │ │ ├── Get-EntraIdentityProvider.ps1 │ │ ├── Get-EntraLifecyclePolicyGroup.ps1 │ │ ├── Get-EntraNamedLocationPolicy.ps1 │ │ ├── Get-EntraObjectByObjectId.ps1 │ │ ├── Get-EntraPermissionGrantConditionSet.ps1 │ │ ├── Get-EntraPermissionGrantPolicy.ps1 │ │ ├── Get-EntraServicePrincipal.ps1 │ │ ├── Get-EntraServicePrincipalAppRoleAssignedTo.ps1 │ │ ├── Get-EntraServicePrincipalAppRoleAssignment.ps1 │ │ ├── Get-EntraServicePrincipalCreatedObject.ps1 │ │ ├── Get-EntraServicePrincipalKeyCredential.ps1 │ │ ├── Get-EntraServicePrincipalMembership.ps1 │ │ ├── Get-EntraServicePrincipalOAuth2PermissionGrant.ps1 │ │ ├── Get-EntraServicePrincipalOwnedObject.ps1 │ │ ├── Get-EntraServicePrincipalOwner.ps1 │ │ ├── Get-EntraServicePrincipalPasswordCredential.ps1 │ │ ├── Get-EntraSubscribedSku.ps1 │ │ ├── Get-EntraTenantDetail.ps1 │ │ ├── Get-EntraTrustedCertificateAuthority.ps1 │ │ ├── Get-EntraUser.ps1 │ │ ├── Get-EntraUserAppRoleAssignment.ps1 │ │ ├── Get-EntraUserCreatedObject.ps1 │ │ ├── Get-EntraUserDirectReport.ps1 │ │ ├── Get-EntraUserExtension.ps1 │ │ ├── Get-EntraUserLicenseDetail.ps1 │ │ ├── Get-EntraUserManager.ps1 │ │ ├── Get-EntraUserMembership.ps1 │ │ ├── Get-EntraUserOAuth2PermissionGrant.ps1 │ │ ├── Get-EntraUserOwnedDevice.ps1 │ │ ├── Get-EntraUserOwnedObject.ps1 │ │ ├── Get-EntraUserRegisteredDevice.ps1 │ │ ├── Get-EntraUserThumbnailPhoto.ps1 │ │ ├── New-EntraApplication.ps1 │ │ ├── New-EntraApplicationExtensionProperty.ps1 │ │ ├── New-EntraApplicationKeyCredential.ps1 │ │ ├── New-EntraApplicationPassword.ps1 │ │ ├── New-EntraApplicationPasswordCredential.ps1 │ │ ├── New-EntraConditionalAccessPolicy.ps1 │ │ ├── New-EntraDirectoryRoleAssignment.ps1 │ │ ├── New-EntraDirectoryRoleDefinition.ps1 │ │ ├── New-EntraDomain.ps1 │ │ ├── New-EntraGroupAppRoleAssignment.ps1 │ │ ├── New-EntraIdentityProvider.ps1 │ │ ├── New-EntraInvitation.ps1 │ │ ├── New-EntraNamedLocationPolicy.ps1 │ │ ├── New-EntraPermissionGrantConditionSet.ps1 │ │ ├── New-EntraPermissionGrantPolicy.ps1 │ │ ├── New-EntraServicePrincipal.ps1 │ │ ├── New-EntraServicePrincipalAppRoleAssignment.ps1 │ │ ├── New-EntraServicePrincipalPasswordCredential.ps1 │ │ ├── New-EntraTrustedCertificateAuthority.ps1 │ │ ├── New-EntraUser.ps1 │ │ ├── New-EntraUserAppRoleAssignment.ps1 │ │ ├── README.md │ │ ├── Remove-EntraAdministrativeUnit.ps1 │ │ ├── Remove-EntraAdministrativeUnitMember.ps1 │ │ ├── Remove-EntraApplicationKeyCredential.ps1 │ │ ├── Remove-EntraApplicationOwner.ps1 │ │ ├── Remove-EntraApplicationPasswordCredential.ps1 │ │ ├── Remove-EntraApplicationVerifiedPublisher.ps1 │ │ ├── Remove-EntraConditionalAccessPolicy.ps1 │ │ ├── Remove-EntraDeletedApplication.ps1 │ │ ├── Remove-EntraDeletedDirectoryObject.ps1 │ │ ├── Remove-EntraDeviceRegisteredOwner.ps1 │ │ ├── Remove-EntraDeviceRegisteredUser.ps1 │ │ ├── Remove-EntraDirectoryRoleAssignment.ps1 │ │ ├── Remove-EntraDirectoryRoleDefinition.ps1 │ │ ├── Remove-EntraDirectoryRoleMember.ps1 │ │ ├── Remove-EntraDomain.ps1 │ │ ├── Remove-EntraGroupAppRoleAssignment.ps1 │ │ ├── Remove-EntraGroupMember.ps1 │ │ ├── Remove-EntraGroupOwner.ps1 │ │ ├── Remove-EntraLifecyclePolicyGroup.ps1 │ │ ├── Remove-EntraNamedLocationPolicy.ps1 │ │ ├── Remove-EntraPermissionGrantConditionSet.ps1 │ │ ├── Remove-EntraPermissionGrantPolicy.ps1 │ │ ├── Remove-EntraScopedRoleMembership.ps1 │ │ ├── Remove-EntraServicePrincipalAppRoleAssignment.ps1 │ │ ├── Remove-EntraServicePrincipalDelegatedPermissionClassification.ps1 │ │ ├── Remove-EntraServicePrincipalKeyCredential.ps1 │ │ ├── Remove-EntraServicePrincipalOwner.ps1 │ │ ├── Remove-EntraServicePrincipalPasswordCredential.ps1 │ │ ├── Remove-EntraTrustedCertificateAuthority.ps1 │ │ ├── Remove-EntraUserAppRoleAssignment.ps1 │ │ ├── Remove-EntraUserManager.ps1 │ │ ├── Reset-EntraLifeCycleGroup.ps1 │ │ ├── Restore-EntraDeletedApplication.ps1 │ │ ├── Revoke-EntraSignedInUserAllRefreshToken.ps1 │ │ ├── Revoke-EntraUserAllRefreshToken.ps1 │ │ ├── Select-EntraGroupIdsContactIsMemberOf.ps1 │ │ ├── Select-EntraGroupIdsGroupIsMemberOf.ps1 │ │ ├── Select-EntraGroupIdsServicePrincipalIsMemberOf.ps1 │ │ ├── Select-EntraGroupIdsUserIsMemberOf.ps1 │ │ ├── Set-EntraApplication.ps1 │ │ ├── Set-EntraApplicationLogo.ps1 │ │ ├── Set-EntraAuthorizationPolicy.ps1 │ │ ├── Set-EntraConditionalAccessPolicy.ps1 │ │ ├── Set-EntraDevice.ps1 │ │ ├── Set-EntraDirectoryRoleDefinition.ps1 │ │ ├── Set-EntraDomain.ps1 │ │ ├── Set-EntraIdentityProvider.ps1 │ │ ├── Set-EntraNamedLocationPolicy.ps1 │ │ ├── Set-EntraPermissionGrantConditionSet.ps1 │ │ ├── Set-EntraPermissionGrantPolicy.ps1 │ │ ├── Set-EntraTenantDetail.ps1 │ │ ├── Set-EntraTrustedCertificateAuthority.ps1 │ │ ├── Set-EntraUser.ps1 │ │ ├── Set-EntraUserExtension.ps1 │ │ ├── Set-EntraUserLicense.ps1 │ │ ├── Set-EntraUserManager.ps1 │ │ ├── Set-EntraUserPassword.ps1 │ │ ├── Set-EntraUserThumbnailPhoto.ps1 │ │ ├── Types.ps1 │ │ └── Update-EntraSignedInUserPassword.ps1 ├── EntraBeta │ ├── AdditionalFunctions │ │ ├── Confirm-EntraBetaDomain.ps1 │ │ ├── Connect-Entra.ps1 │ │ ├── Disconnect-Entra.ps1 │ │ ├── Get-EntraBetaAccountSku.ps1 │ │ ├── Get-EntraBetaApplicationPasswordCredential.ps1 │ │ ├── Get-EntraBetaApplicationProxyConnector.ps1 │ │ ├── Get-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ ├── Get-EntraBetaApplicationProxyConnectorGroupMembers.ps1 │ │ ├── Get-EntraBetaApplicationProxyConnectorMemberOf.ps1 │ │ ├── Get-EntraBetaDirSyncConfiguration.ps1 │ │ ├── Get-EntraBetaDirSyncFeature.ps1 │ │ ├── Get-EntraBetaDirectoryObjectOnPremisesProvisioningError.ps1 │ │ ├── Get-EntraBetaDomainFederationSettings.ps1 │ │ ├── Get-EntraBetaFederationProperty.ps1 │ │ ├── Get-EntraBetaPartnerInformation.ps1 │ │ ├── Get-EntraBetaPasswordPolicy.ps1 │ │ ├── Get-EntraBetaPrivateAccessApplicationSegment.ps1 │ │ ├── Get-EntraBetaUserAuthenticationMethod.ps1 │ │ ├── Get-EntraBetaUserAuthenticationRequirement.ps1 │ │ ├── Get-EntraContext.ps1 │ │ ├── New-EntraBetaApplicationProxyApplication.ps1 │ │ ├── New-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ ├── New-EntraBetaCustomHeaders.ps1 │ │ ├── New-EntraBetaOauth2PermissionGrant.ps1 │ │ ├── New-EntraBetaPrivateAccessApplicationSegment.ps1 │ │ ├── README.md │ │ ├── Remove-EntraBetaApplicationProxyApplicationConnectorGroup.ps1 │ │ ├── Remove-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ ├── Remove-EntraBetaPrivateAccessApplicationSegment.ps1 │ │ ├── Reset-EntraBetaStrongAuthenticationMethodByUpn.ps1 │ │ ├── Restore-EntraBetaDeletedDirectoryObject.ps1 │ │ ├── Set-EntraBetaApplicationProxyApplication.ps1 │ │ ├── Set-EntraBetaApplicationProxyApplicationConnectorGroup.ps1 │ │ ├── Set-EntraBetaApplicationProxyApplicationSingleSignOn.ps1 │ │ ├── Set-EntraBetaApplicationProxyConnector.ps1 │ │ ├── Set-EntraBetaApplicationProxyConnectorGroup.ps1 │ │ ├── Set-EntraBetaDirSyncConfiguration.ps1 │ │ ├── Set-EntraBetaDirSyncEnabled.ps1 │ │ ├── Set-EntraBetaDirSyncFeature.ps1 │ │ ├── Set-EntraBetaDomainFederationSettings.ps1 │ │ ├── Set-EntraBetaPartnerInformation.ps1 │ │ ├── Set-EntraBetaServicePrincipal.ps1 │ │ ├── Test-EntraScript.ps1 │ │ ├── Update-EntraBetaOauth2PermissionGrant.ps1 │ │ ├── Update-EntraBetaUserAuthenticationRequirement.ps1 │ │ └── Update-EntraBetaUserFromFederated.ps1 │ ├── config │ │ ├── ModuleMetadata.json │ │ ├── ModuleSettings.json │ │ ├── dependencyMapping.json │ │ └── moduleMapping.json │ └── customizations │ │ ├── Add-EntraBetaAdministrativeUnitMember.ps1 │ │ ├── Add-EntraBetaApplicationOwner.ps1 │ │ ├── Add-EntraBetaApplicationPolicy.ps1 │ │ ├── Add-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ ├── Add-EntraBetaDeviceRegisteredOwner.ps1 │ │ ├── Add-EntraBetaDeviceRegisteredUser.ps1 │ │ ├── Add-EntraBetaDirectoryRoleMember.ps1 │ │ ├── Add-EntraBetaFeatureRolloutPolicyDirectoryObject.ps1 │ │ ├── Add-EntraBetaGroupMember.ps1 │ │ ├── Add-EntraBetaGroupOwner.ps1 │ │ ├── Add-EntraBetaLifecyclePolicyGroup.ps1 │ │ ├── Add-EntraBetaScopedRoleMembership.ps1 │ │ ├── Add-EntraBetaServicePrincipalOwner.ps1 │ │ ├── Add-EntraBetaServicePrincipalPolicy.ps1 │ │ ├── Generic.ps1 │ │ ├── Get-EntraBetaApplication.ps1 │ │ ├── Get-EntraBetaApplicationKeyCredential.ps1 │ │ ├── Get-EntraBetaApplicationLogo.ps1 │ │ ├── Get-EntraBetaApplicationOwner.ps1 │ │ ├── Get-EntraBetaApplicationPolicy.ps1 │ │ ├── Get-EntraBetaApplicationProxyApplication.ps1 │ │ ├── Get-EntraBetaApplicationSignInDetailedSummary.ps1 │ │ ├── Get-EntraBetaApplicationSignInSummary.ps1 │ │ ├── Get-EntraBetaApplicationTemplate.ps1 │ │ ├── Get-EntraBetaAttributeSet.ps1 │ │ ├── Get-EntraBetaAuditDirectoryLog.ps1 │ │ ├── Get-EntraBetaAuditSignInLog.ps1 │ │ ├── Get-EntraBetaAuthorizationPolicy.ps1 │ │ ├── Get-EntraBetaConditionalAccessPolicy.ps1 │ │ ├── Get-EntraBetaContact.ps1 │ │ ├── Get-EntraBetaContactDirectReport.ps1 │ │ ├── Get-EntraBetaContactMembership.ps1 │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinition.ps1 │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ ├── Get-EntraBetaDeletedApplication.ps1 │ │ ├── Get-EntraBetaDeletedDirectoryObject.ps1 │ │ ├── Get-EntraBetaDeletedGroup.ps1 │ │ ├── Get-EntraBetaDevice.ps1 │ │ ├── Get-EntraBetaDeviceRegisteredOwner.ps1 │ │ ├── Get-EntraBetaDeviceRegisteredUser.ps1 │ │ ├── Get-EntraBetaDirectoryRoleAssignment.ps1 │ │ ├── Get-EntraBetaDirectoryRoleDefinition.ps1 │ │ ├── Get-EntraBetaDirectoryRoleMember.ps1 │ │ ├── Get-EntraBetaDirectorySettingTemplate.ps1 │ │ ├── Get-EntraBetaDomain.ps1 │ │ ├── Get-EntraBetaDomainNameReference.ps1 │ │ ├── Get-EntraBetaDomainServiceConfigurationRecord.ps1 │ │ ├── Get-EntraBetaDomainVerificationDnsRecord.ps1 │ │ ├── Get-EntraBetaFeatureRolloutPolicy.ps1 │ │ ├── Get-EntraBetaGroup.ps1 │ │ ├── Get-EntraBetaGroupAppRoleAssignment.ps1 │ │ ├── Get-EntraBetaGroupMember.ps1 │ │ ├── Get-EntraBetaGroupOwner.ps1 │ │ ├── Get-EntraBetaIdentityProvider.ps1 │ │ ├── Get-EntraBetaLifecyclePolicyGroup.ps1 │ │ ├── Get-EntraBetaNamedLocationPolicy.ps1 │ │ ├── Get-EntraBetaObjectByObjectId.ps1 │ │ ├── Get-EntraBetaObjectSetting.ps1 │ │ ├── Get-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ ├── Get-EntraBetaPermissionGrantConditionSet.ps1 │ │ ├── Get-EntraBetaPermissionGrantPolicy.ps1 │ │ ├── Get-EntraBetaPolicy.ps1 │ │ ├── Get-EntraBetaPolicyAppliedObject.ps1 │ │ ├── Get-EntraBetaPrivilegedResource.ps1 │ │ ├── Get-EntraBetaPrivilegedRoleDefinition.ps1 │ │ ├── Get-EntraBetaPrivilegedRoleSetting.ps1 │ │ ├── Get-EntraBetaScopedRoleMembership.ps1 │ │ ├── Get-EntraBetaServicePrincipal.ps1 │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignedTo.ps1 │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignment.ps1 │ │ ├── Get-EntraBetaServicePrincipalCreatedObject.ps1 │ │ ├── Get-EntraBetaServicePrincipalKeyCredential.ps1 │ │ ├── Get-EntraBetaServicePrincipalMembership.ps1 │ │ ├── Get-EntraBetaServicePrincipalOAuth2PermissionGrant.ps1 │ │ ├── Get-EntraBetaServicePrincipalOwnedObject.ps1 │ │ ├── Get-EntraBetaServicePrincipalOwner.ps1 │ │ ├── Get-EntraBetaServicePrincipalPasswordCredential.ps1 │ │ ├── Get-EntraBetaServicePrincipalPolicy.ps1 │ │ ├── Get-EntraBetaSubscribedSku.ps1 │ │ ├── Get-EntraBetaTenantDetail.ps1 │ │ ├── Get-EntraBetaTrustFrameworkPolicy.ps1 │ │ ├── Get-EntraBetaTrustedCertificateAuthority.ps1 │ │ ├── Get-EntraBetaUser.ps1 │ │ ├── Get-EntraBetaUserAppRoleAssignment.ps1 │ │ ├── Get-EntraBetaUserCreatedObject.ps1 │ │ ├── Get-EntraBetaUserDirectReport.ps1 │ │ ├── Get-EntraBetaUserExtension.ps1 │ │ ├── Get-EntraBetaUserLicenseDetail.ps1 │ │ ├── Get-EntraBetaUserManager.ps1 │ │ ├── Get-EntraBetaUserMembership.ps1 │ │ ├── Get-EntraBetaUserOAuth2PermissionGrant.ps1 │ │ ├── Get-EntraBetaUserOwnedDevice.ps1 │ │ ├── Get-EntraBetaUserOwnedObject.ps1 │ │ ├── Get-EntraBetaUserRegisteredDevice.ps1 │ │ ├── Get-EntraBetaUserThumbnailPhoto.ps1 │ │ ├── New-EntraBetaAdministrativeUnit.ps1 │ │ ├── New-EntraBetaAdministrativeUnitMember.ps1 │ │ ├── New-EntraBetaApplication.ps1 │ │ ├── New-EntraBetaApplicationExtensionProperty.ps1 │ │ ├── New-EntraBetaApplicationFromApplicationTemplate.ps1 │ │ ├── New-EntraBetaApplicationKeyCredential.ps1 │ │ ├── New-EntraBetaApplicationPassword.ps1 │ │ ├── New-EntraBetaApplicationPasswordCredential.ps1 │ │ ├── New-EntraBetaAttributeSet.ps1 │ │ ├── New-EntraBetaConditionalAccessPolicy.ps1 │ │ ├── New-EntraBetaCustomSecurityAttributeDefinition.ps1 │ │ ├── New-EntraBetaDirectoryRoleAssignment.ps1 │ │ ├── New-EntraBetaDirectoryRoleDefinition.ps1 │ │ ├── New-EntraBetaDirectorySetting.ps1 │ │ ├── New-EntraBetaDomain.ps1 │ │ ├── New-EntraBetaFeatureRolloutPolicy.ps1 │ │ ├── New-EntraBetaGroupAppRoleAssignment.ps1 │ │ ├── New-EntraBetaIdentityProvider.ps1 │ │ ├── New-EntraBetaInvitation.ps1 │ │ ├── New-EntraBetaNamedLocationPolicy.ps1 │ │ ├── New-EntraBetaObjectSetting.ps1 │ │ ├── New-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ ├── New-EntraBetaPermissionGrantConditionSet.ps1 │ │ ├── New-EntraBetaPermissionGrantPolicy.ps1 │ │ ├── New-EntraBetaPolicy.ps1 │ │ ├── New-EntraBetaServicePrincipal.ps1 │ │ ├── New-EntraBetaServicePrincipalAppRoleAssignment.ps1 │ │ ├── New-EntraBetaServicePrincipalPasswordCredential.ps1 │ │ ├── New-EntraBetaTrustFrameworkPolicy.ps1 │ │ ├── New-EntraBetaTrustedCertificateAuthority.ps1 │ │ ├── New-EntraBetaUser.ps1 │ │ ├── New-EntraBetaUserAppRoleAssignment.ps1 │ │ ├── Remove-EntraBetaAdministrativeUnitMember.ps1 │ │ ├── Remove-EntraBetaApplicationKeyCredential.ps1 │ │ ├── Remove-EntraBetaApplicationOwner.ps1 │ │ ├── Remove-EntraBetaApplicationPasswordCredential.ps1 │ │ ├── Remove-EntraBetaApplicationPolicy.ps1 │ │ ├── Remove-EntraBetaApplicationProxyApplication.ps1 │ │ ├── Remove-EntraBetaApplicationVerifiedPublisher.ps1 │ │ ├── Remove-EntraBetaConditionalAccessPolicy.ps1 │ │ ├── Remove-EntraBetaDeletedApplication.ps1 │ │ ├── Remove-EntraBetaDeletedDirectoryObject.ps1 │ │ ├── Remove-EntraBetaDeviceRegisteredOwner.ps1 │ │ ├── Remove-EntraBetaDeviceRegisteredUser.ps1 │ │ ├── Remove-EntraBetaDirectoryRoleAssignment.ps1 │ │ ├── Remove-EntraBetaDirectoryRoleDefinition.ps1 │ │ ├── Remove-EntraBetaDirectoryRoleMember.ps1 │ │ ├── Remove-EntraBetaDomain.ps1 │ │ ├── Remove-EntraBetaFeatureRolloutPolicy.ps1 │ │ ├── Remove-EntraBetaFeatureRolloutPolicyDirectoryObject.ps1 │ │ ├── Remove-EntraBetaGroupAppRoleAssignment.ps1 │ │ ├── Remove-EntraBetaGroupMember.ps1 │ │ ├── Remove-EntraBetaGroupOwner.ps1 │ │ ├── Remove-EntraBetaLifecyclePolicyGroup.ps1 │ │ ├── Remove-EntraBetaNamedLocationPolicy.ps1 │ │ ├── Remove-EntraBetaObjectSetting.ps1 │ │ ├── Remove-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ ├── Remove-EntraBetaPermissionGrantConditionSet.ps1 │ │ ├── Remove-EntraBetaPermissionGrantPolicy.ps1 │ │ ├── Remove-EntraBetaPolicy.ps1 │ │ ├── Remove-EntraBetaScopedRoleMembership.ps1 │ │ ├── Remove-EntraBetaServicePrincipalAppRoleAssignment.ps1 │ │ ├── Remove-EntraBetaServicePrincipalDelegatedPermissionClassification.ps1 │ │ ├── Remove-EntraBetaServicePrincipalOwner.ps1 │ │ ├── Remove-EntraBetaServicePrincipalPasswordCredential.ps1 │ │ ├── Remove-EntraBetaServicePrincipalPolicy.ps1 │ │ ├── Remove-EntraBetaTrustedCertificateAuthority.ps1 │ │ ├── Remove-EntraBetaUserAppRoleAssignment.ps1 │ │ ├── Remove-EntraBetaUserManager.ps1 │ │ ├── Reset-EntraBetaLifeCycleGroup.ps1 │ │ ├── Restore-EntraBetaDeletedApplication.ps1 │ │ ├── Revoke-EntraBetaSignedInUserAllRefreshToken.ps1 │ │ ├── Revoke-EntraBetaUserAllRefreshToken.ps1 │ │ ├── Select-EntraBetaGroupIdsContactIsMemberOf.ps1 │ │ ├── Select-EntraBetaGroupIdsGroupIsMemberOf.ps1 │ │ ├── Select-EntraBetaGroupIdsServicePrincipalIsMemberOf.ps1 │ │ ├── Select-EntraBetaGroupIdsUserIsMemberOf.ps1 │ │ ├── Set-EntraBetaAdministrativeUnit.ps1 │ │ ├── Set-EntraBetaApplication.ps1 │ │ ├── Set-EntraBetaApplicationLogo.ps1 │ │ ├── Set-EntraBetaAttributeSet.ps1 │ │ ├── Set-EntraBetaAuthorizationPolicy.ps1 │ │ ├── Set-EntraBetaConditionalAccessPolicy.ps1 │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinition.ps1 │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.ps1 │ │ ├── Set-EntraBetaDevice.ps1 │ │ ├── Set-EntraBetaDirectoryRoleDefinition.ps1 │ │ ├── Set-EntraBetaDirectorySetting.ps1 │ │ ├── Set-EntraBetaDomain.ps1 │ │ ├── Set-EntraBetaFeatureRolloutPolicy.ps1 │ │ ├── Set-EntraBetaIdentityProvider.ps1 │ │ ├── Set-EntraBetaNamedLocationPolicy.ps1 │ │ ├── Set-EntraBetaObjectSetting.ps1 │ │ ├── Set-EntraBetaPasswordSingleSignOnCredential.ps1 │ │ ├── Set-EntraBetaPermissionGrantConditionSet.ps1 │ │ ├── Set-EntraBetaPermissionGrantPolicy.ps1 │ │ ├── Set-EntraBetaPolicy.ps1 │ │ ├── Set-EntraBetaPrivilegedRoleSetting.ps1 │ │ ├── Set-EntraBetaTenantDetail.ps1 │ │ ├── Set-EntraBetaTrustFrameworkPolicy.ps1 │ │ ├── Set-EntraBetaTrustedCertificateAuthority.ps1 │ │ ├── Set-EntraBetaUser.ps1 │ │ ├── Set-EntraBetaUserLicense.ps1 │ │ ├── Set-EntraBetaUserManager.ps1 │ │ ├── Set-EntraBetaUserPassword.ps1 │ │ ├── Set-EntraBetaUserThumbnailPhoto.ps1 │ │ ├── Types.ps1 │ │ └── Update-EntraBetaSignedInUserPassword.ps1 ├── breadcrumb │ └── toc.yml ├── docfx.json ├── docs │ ├── entra-powershell-beta │ │ ├── Microsoft.Graph.Entra.Beta │ │ │ ├── Add-EntraBetaAdministrativeUnitMember.md │ │ │ ├── Add-EntraBetaApplicationOwner.md │ │ │ ├── Add-EntraBetaApplicationPolicy.md │ │ │ ├── Add-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Add-EntraBetaDeviceRegisteredOwner.md │ │ │ ├── Add-EntraBetaDeviceRegisteredUser.md │ │ │ ├── Add-EntraBetaDirectoryRoleMember.md │ │ │ ├── Add-EntraBetaFeatureRolloutPolicyDirectoryObject.md │ │ │ ├── Add-EntraBetaGroupMember.md │ │ │ ├── Add-EntraBetaGroupOwner.md │ │ │ ├── Add-EntraBetaLifecyclePolicyGroup.md │ │ │ ├── Add-EntraBetaScopedRoleMembership.md │ │ │ ├── Add-EntraBetaServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Add-EntraBetaServicePrincipalOwner.md │ │ │ ├── Add-EntraBetaServicePrincipalPolicy.md │ │ │ ├── Confirm-EntraBetaDomain.md │ │ │ ├── Connect-Entra.md │ │ │ ├── Disconnect-Entra.md │ │ │ ├── Enable-EntraAzureADAlias.md │ │ │ ├── Enable-EntraBetaDirectoryRole.md │ │ │ ├── Get-EntraBetaAccountSku.md │ │ │ ├── Get-EntraBetaAdministrativeUnit.md │ │ │ ├── Get-EntraBetaAdministrativeUnitMember.md │ │ │ ├── Get-EntraBetaApplication.md │ │ │ ├── Get-EntraBetaApplicationExtensionProperty.md │ │ │ ├── Get-EntraBetaApplicationKeyCredential.md │ │ │ ├── Get-EntraBetaApplicationLogo.md │ │ │ ├── Get-EntraBetaApplicationOwner.md │ │ │ ├── Get-EntraBetaApplicationPasswordCredential.md │ │ │ ├── Get-EntraBetaApplicationPolicy.md │ │ │ ├── Get-EntraBetaApplicationProxyApplication.md │ │ │ ├── Get-EntraBetaApplicationProxyApplicationConnectorGroup.md │ │ │ ├── Get-EntraBetaApplicationProxyConnector.md │ │ │ ├── Get-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── Get-EntraBetaApplicationProxyConnectorGroupMembers.md │ │ │ ├── Get-EntraBetaApplicationProxyConnectorMemberOf.md │ │ │ ├── Get-EntraBetaApplicationServiceEndpoint.md │ │ │ ├── Get-EntraBetaApplicationSignInDetailedSummary.md │ │ │ ├── Get-EntraBetaApplicationSignInSummary.md │ │ │ ├── Get-EntraBetaApplicationTemplate.md │ │ │ ├── Get-EntraBetaAttributeSet.md │ │ │ ├── Get-EntraBetaAuditDirectoryLog.md │ │ │ ├── Get-EntraBetaAuditSignInLog.md │ │ │ ├── Get-EntraBetaAuthorizationPolicy.md │ │ │ ├── Get-EntraBetaConditionalAccessPolicy.md │ │ │ ├── Get-EntraBetaContact.md │ │ │ ├── Get-EntraBetaContactDirectReport.md │ │ │ ├── Get-EntraBetaContactManager.md │ │ │ ├── Get-EntraBetaContactMembership.md │ │ │ ├── Get-EntraBetaContract.md │ │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinition.md │ │ │ ├── Get-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Get-EntraBetaDeletedApplication.md │ │ │ ├── Get-EntraBetaDeletedDirectoryObject.md │ │ │ ├── Get-EntraBetaDeletedGroup.md │ │ │ ├── Get-EntraBetaDevice.md │ │ │ ├── Get-EntraBetaDeviceRegisteredOwner.md │ │ │ ├── Get-EntraBetaDeviceRegisteredUser.md │ │ │ ├── Get-EntraBetaDirSyncConfiguration.md │ │ │ ├── Get-EntraBetaDirSyncFeature.md │ │ │ ├── Get-EntraBetaDirectoryObjectOnPremisesProvisioningError.md │ │ │ ├── Get-EntraBetaDirectoryRole.md │ │ │ ├── Get-EntraBetaDirectoryRoleAssignment.md │ │ │ ├── Get-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── Get-EntraBetaDirectoryRoleMember.md │ │ │ ├── Get-EntraBetaDirectoryRoleTemplate.md │ │ │ ├── Get-EntraBetaDirectorySetting.md │ │ │ ├── Get-EntraBetaDirectorySettingTemplate.md │ │ │ ├── Get-EntraBetaDomain.md │ │ │ ├── Get-EntraBetaDomainFederationSettings.md │ │ │ ├── Get-EntraBetaDomainNameReference.md │ │ │ ├── Get-EntraBetaDomainServiceConfigurationRecord.md │ │ │ ├── Get-EntraBetaDomainVerificationDnsRecord.md │ │ │ ├── Get-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── Get-EntraBetaFederationProperty.md │ │ │ ├── Get-EntraBetaGroup.md │ │ │ ├── Get-EntraBetaGroupAppRoleAssignment.md │ │ │ ├── Get-EntraBetaGroupLifecyclePolicy.md │ │ │ ├── Get-EntraBetaGroupMember.md │ │ │ ├── Get-EntraBetaGroupOwner.md │ │ │ ├── Get-EntraBetaGroupPermissionGrant.md │ │ │ ├── Get-EntraBetaIdentityProvider.md │ │ │ ├── Get-EntraBetaLifecyclePolicyGroup.md │ │ │ ├── Get-EntraBetaNamedLocationPolicy.md │ │ │ ├── Get-EntraBetaOAuth2PermissionGrant.md │ │ │ ├── Get-EntraBetaObjectByObjectId.md │ │ │ ├── Get-EntraBetaObjectSetting.md │ │ │ ├── Get-EntraBetaPartnerInformation.md │ │ │ ├── Get-EntraBetaPasswordPolicy.md │ │ │ ├── Get-EntraBetaPasswordSingleSignOnCredential.md │ │ │ ├── Get-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── Get-EntraBetaPermissionGrantPolicy.md │ │ │ ├── Get-EntraBetaPolicy.md │ │ │ ├── Get-EntraBetaPolicyAppliedObject.md │ │ │ ├── Get-EntraBetaPrivateAccessApplicationSegment.md │ │ │ ├── Get-EntraBetaPrivilegedResource.md │ │ │ ├── Get-EntraBetaPrivilegedRole.md │ │ │ ├── Get-EntraBetaPrivilegedRoleDefinition.md │ │ │ ├── Get-EntraBetaPrivilegedRoleSetting.md │ │ │ ├── Get-EntraBetaScopedRoleMembership.md │ │ │ ├── Get-EntraBetaServicePrincipal.md │ │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignedTo.md │ │ │ ├── Get-EntraBetaServicePrincipalAppRoleAssignment.md │ │ │ ├── Get-EntraBetaServicePrincipalCreatedObject.md │ │ │ ├── Get-EntraBetaServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Get-EntraBetaServicePrincipalKeyCredential.md │ │ │ ├── Get-EntraBetaServicePrincipalMembership.md │ │ │ ├── Get-EntraBetaServicePrincipalOAuth2PermissionGrant.md │ │ │ ├── Get-EntraBetaServicePrincipalOwnedObject.md │ │ │ ├── Get-EntraBetaServicePrincipalOwner.md │ │ │ ├── Get-EntraBetaServicePrincipalPasswordCredential.md │ │ │ ├── Get-EntraBetaServicePrincipalPolicy.md │ │ │ ├── Get-EntraBetaSubscribedSku.md │ │ │ ├── Get-EntraBetaTenantDetail.md │ │ │ ├── Get-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── Get-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── Get-EntraBetaUser.md │ │ │ ├── Get-EntraBetaUserAppRoleAssignment.md │ │ │ ├── Get-EntraBetaUserAuthenticationRequirement.md │ │ │ ├── Get-EntraBetaUserCreatedObject.md │ │ │ ├── Get-EntraBetaUserDirectReport.md │ │ │ ├── Get-EntraBetaUserExtension.md │ │ │ ├── Get-EntraBetaUserLicenseDetail.md │ │ │ ├── Get-EntraBetaUserManager.md │ │ │ ├── Get-EntraBetaUserMembership.md │ │ │ ├── Get-EntraBetaUserOAuth2PermissionGrant.md │ │ │ ├── Get-EntraBetaUserOwnedDevice.md │ │ │ ├── Get-EntraBetaUserOwnedObject.md │ │ │ ├── Get-EntraBetaUserRegisteredDevice.md │ │ │ ├── Get-EntraBetaUserThumbnailPhoto.md │ │ │ ├── Get-EntraContext.md │ │ │ ├── New-EntraBetaAdministrativeUnit.md │ │ │ ├── New-EntraBetaAdministrativeUnitMember.md │ │ │ ├── New-EntraBetaApplication.md │ │ │ ├── New-EntraBetaApplicationExtensionProperty.md │ │ │ ├── New-EntraBetaApplicationFromApplicationTemplate.md │ │ │ ├── New-EntraBetaApplicationKey.md │ │ │ ├── New-EntraBetaApplicationKeyCredential.md │ │ │ ├── New-EntraBetaApplicationPassword.md │ │ │ ├── New-EntraBetaApplicationPasswordCredential.md │ │ │ ├── New-EntraBetaApplicationProxyApplication.md │ │ │ ├── New-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── New-EntraBetaAttributeSet.md │ │ │ ├── New-EntraBetaConditionalAccessPolicy.md │ │ │ ├── New-EntraBetaCustomSecurityAttributeDefinition.md │ │ │ ├── New-EntraBetaDevice.md │ │ │ ├── New-EntraBetaDirectoryRoleAssignment.md │ │ │ ├── New-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── New-EntraBetaDirectorySetting.md │ │ │ ├── New-EntraBetaDomain.md │ │ │ ├── New-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── New-EntraBetaGroup.md │ │ │ ├── New-EntraBetaGroupAppRoleAssignment.md │ │ │ ├── New-EntraBetaGroupLifecyclePolicy.md │ │ │ ├── New-EntraBetaIdentityProvider.md │ │ │ ├── New-EntraBetaInvitation.md │ │ │ ├── New-EntraBetaNamedLocationPolicy.md │ │ │ ├── New-EntraBetaOauth2PermissionGrant.md │ │ │ ├── New-EntraBetaObjectSetting.md │ │ │ ├── New-EntraBetaPasswordSingleSignOnCredential.md │ │ │ ├── New-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── New-EntraBetaPermissionGrantPolicy.md │ │ │ ├── New-EntraBetaPolicy.md │ │ │ ├── New-EntraBetaPrivateAccessApplicationSegment.md │ │ │ ├── New-EntraBetaPrivilegedRoleAssignment.md │ │ │ ├── New-EntraBetaServicePrincipal.md │ │ │ ├── New-EntraBetaServicePrincipalAppRoleAssignment.md │ │ │ ├── New-EntraBetaServicePrincipalPasswordCredential.md │ │ │ ├── New-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── New-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── New-EntraBetaUser.md │ │ │ ├── New-EntraBetaUserAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaAdministrativeUnit.md │ │ │ ├── Remove-EntraBetaAdministrativeUnitMember.md │ │ │ ├── Remove-EntraBetaApplication.md │ │ │ ├── Remove-EntraBetaApplicationExtensionProperty.md │ │ │ ├── Remove-EntraBetaApplicationKey.md │ │ │ ├── Remove-EntraBetaApplicationKeyCredential.md │ │ │ ├── Remove-EntraBetaApplicationOwner.md │ │ │ ├── Remove-EntraBetaApplicationPassword.md │ │ │ ├── Remove-EntraBetaApplicationPasswordCredential.md │ │ │ ├── Remove-EntraBetaApplicationPolicy.md │ │ │ ├── Remove-EntraBetaApplicationProxyApplication.md │ │ │ ├── Remove-EntraBetaApplicationProxyApplicationConnectorGroup.md │ │ │ ├── Remove-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── Remove-EntraBetaApplicationVerifiedPublisher.md │ │ │ ├── Remove-EntraBetaConditionalAccessPolicy.md │ │ │ ├── Remove-EntraBetaContact.md │ │ │ ├── Remove-EntraBetaDeletedApplication.md │ │ │ ├── Remove-EntraBetaDeletedDirectoryObject.md │ │ │ ├── Remove-EntraBetaDevice.md │ │ │ ├── Remove-EntraBetaDeviceRegisteredOwner.md │ │ │ ├── Remove-EntraBetaDeviceRegisteredUser.md │ │ │ ├── Remove-EntraBetaDirectoryRoleAssignment.md │ │ │ ├── Remove-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── Remove-EntraBetaDirectoryRoleMember.md │ │ │ ├── Remove-EntraBetaDirectorySetting.md │ │ │ ├── Remove-EntraBetaDomain.md │ │ │ ├── Remove-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── Remove-EntraBetaFeatureRolloutPolicyDirectoryObject.md │ │ │ ├── Remove-EntraBetaGroup.md │ │ │ ├── Remove-EntraBetaGroupAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaGroupLifecyclePolicy.md │ │ │ ├── Remove-EntraBetaGroupMember.md │ │ │ ├── Remove-EntraBetaGroupOwner.md │ │ │ ├── Remove-EntraBetaIdentityProvider.md │ │ │ ├── Remove-EntraBetaLifecyclePolicyGroup.md │ │ │ ├── Remove-EntraBetaNamedLocationPolicy.md │ │ │ ├── Remove-EntraBetaOAuth2PermissionGrant.md │ │ │ ├── Remove-EntraBetaObjectSetting.md │ │ │ ├── Remove-EntraBetaPasswordSingleSignOnCredential.md │ │ │ ├── Remove-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── Remove-EntraBetaPermissionGrantPolicy.md │ │ │ ├── Remove-EntraBetaPolicy.md │ │ │ ├── Remove-EntraBetaPrivateAccessApplicationSegment.md │ │ │ ├── Remove-EntraBetaScopedRoleMembership.md │ │ │ ├── Remove-EntraBetaServicePrincipal.md │ │ │ ├── Remove-EntraBetaServicePrincipalAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Remove-EntraBetaServicePrincipalOwner.md │ │ │ ├── Remove-EntraBetaServicePrincipalPasswordCredential.md │ │ │ ├── Remove-EntraBetaServicePrincipalPolicy.md │ │ │ ├── Remove-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── Remove-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── Remove-EntraBetaUser.md │ │ │ ├── Remove-EntraBetaUserAppRoleAssignment.md │ │ │ ├── Remove-EntraBetaUserExtension.md │ │ │ ├── Remove-EntraBetaUserManager.md │ │ │ ├── Reset-EntraBetaLifeCycleGroup.md │ │ │ ├── Reset-EntraBetaStrongAuthenticationMethodByUpn.md │ │ │ ├── Restore-EntraBetaDeletedApplication.md │ │ │ ├── Restore-EntraBetaDeletedDirectoryObject.md │ │ │ ├── Revoke-EntraBetaSignedInUserAllRefreshToken.md │ │ │ ├── Revoke-EntraBetaUserAllRefreshToken.md │ │ │ ├── Select-EntraBetaGroupIdsContactIsMemberOf.md │ │ │ ├── Select-EntraBetaGroupIdsGroupIsMemberOf.md │ │ │ ├── Select-EntraBetaGroupIdsServicePrincipalIsMemberOf.md │ │ │ ├── Select-EntraBetaGroupIdsUserIsMemberOf.md │ │ │ ├── Set-EntraBetaAdministrativeUnit.md │ │ │ ├── Set-EntraBetaApplication.md │ │ │ ├── Set-EntraBetaApplicationLogo.md │ │ │ ├── Set-EntraBetaApplicationProxyApplication.md │ │ │ ├── Set-EntraBetaApplicationProxyApplicationConnectorGroup.md │ │ │ ├── Set-EntraBetaApplicationProxyApplicationSingleSignOn.md │ │ │ ├── Set-EntraBetaApplicationProxyConnector.md │ │ │ ├── Set-EntraBetaApplicationProxyConnectorGroup.md │ │ │ ├── Set-EntraBetaApplicationVerifiedPublisher.md │ │ │ ├── Set-EntraBetaAttributeSet.md │ │ │ ├── Set-EntraBetaAuthorizationPolicy.md │ │ │ ├── Set-EntraBetaConditionalAccessPolicy.md │ │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinition.md │ │ │ ├── Set-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Set-EntraBetaDevice.md │ │ │ ├── Set-EntraBetaDirSyncConfiguration.md │ │ │ ├── Set-EntraBetaDirSyncEnabled.md │ │ │ ├── Set-EntraBetaDirSyncFeature.md │ │ │ ├── Set-EntraBetaDirectoryRoleDefinition.md │ │ │ ├── Set-EntraBetaDirectorySetting.md │ │ │ ├── Set-EntraBetaDomain.md │ │ │ ├── Set-EntraBetaDomainFederationSettings.md │ │ │ ├── Set-EntraBetaFeatureRolloutPolicy.md │ │ │ ├── Set-EntraBetaGroup.md │ │ │ ├── Set-EntraBetaGroupLifecyclePolicy.md │ │ │ ├── Set-EntraBetaIdentityProvider.md │ │ │ ├── Set-EntraBetaNamedLocationPolicy.md │ │ │ ├── Set-EntraBetaObjectSetting.md │ │ │ ├── Set-EntraBetaPartnerInformation.md │ │ │ ├── Set-EntraBetaPasswordSingleSignOnCredential.md │ │ │ ├── Set-EntraBetaPermissionGrantConditionSet.md │ │ │ ├── Set-EntraBetaPermissionGrantPolicy.md │ │ │ ├── Set-EntraBetaPolicy.md │ │ │ ├── Set-EntraBetaPrivilegedRoleAssignmentRequest.md │ │ │ ├── Set-EntraBetaPrivilegedRoleSetting.md │ │ │ ├── Set-EntraBetaServicePrincipal.md │ │ │ ├── Set-EntraBetaTenantDetail.md │ │ │ ├── Set-EntraBetaTrustFrameworkPolicy.md │ │ │ ├── Set-EntraBetaTrustedCertificateAuthority.md │ │ │ ├── Set-EntraBetaUser.md │ │ │ ├── Set-EntraBetaUserExtension.md │ │ │ ├── Set-EntraBetaUserLicense.md │ │ │ ├── Set-EntraBetaUserManager.md │ │ │ ├── Set-EntraBetaUserPassword.md │ │ │ ├── Set-EntraBetaUserThumbnailPhoto.md │ │ │ ├── Test-EntraScript.md │ │ │ ├── Update-EntraBetaOauth2PermissionGrant.md │ │ │ ├── Update-EntraBetaSignedInUserPassword.md │ │ │ ├── Update-EntraBetaUserAuthenticationRequirement.md │ │ │ └── Update-EntraBetaUserFromFederated.md │ │ ├── index.md │ │ └── toc.yml │ ├── entra-powershell-v1.0 │ │ ├── Microsoft.Graph.Entra │ │ │ ├── Add-EntraAdministrativeUnitMember.md │ │ │ ├── Add-EntraApplicationOwner.md │ │ │ ├── Add-EntraCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Add-EntraDeviceRegisteredOwner.md │ │ │ ├── Add-EntraDeviceRegisteredUser.md │ │ │ ├── Add-EntraDirectoryRoleMember.md │ │ │ ├── Add-EntraEnvironment.md │ │ │ ├── Add-EntraGroupMember.md │ │ │ ├── Add-EntraGroupOwner.md │ │ │ ├── Add-EntraLifecyclePolicyGroup.md │ │ │ ├── Add-EntraScopedRoleMembership.md │ │ │ ├── Add-EntraServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Add-EntraServicePrincipalOwner.md │ │ │ ├── Confirm-EntraDomain.md │ │ │ ├── Connect-Entra.md │ │ │ ├── Disconnect-Entra.md │ │ │ ├── Enable-EntraAzureADAlias.md │ │ │ ├── Enable-EntraDirectoryRole.md │ │ │ ├── Find-EntraPermission.md │ │ │ ├── Get-CrossCloudVerificationCode.md │ │ │ ├── Get-EntraAccountSku.md │ │ │ ├── Get-EntraAdministrativeUnit.md │ │ │ ├── Get-EntraAdministrativeUnitMember.md │ │ │ ├── Get-EntraApplication.md │ │ │ ├── Get-EntraApplicationExtensionProperty.md │ │ │ ├── Get-EntraApplicationKeyCredential.md │ │ │ ├── Get-EntraApplicationLogo.md │ │ │ ├── Get-EntraApplicationOwner.md │ │ │ ├── Get-EntraApplicationPasswordCredential.md │ │ │ ├── Get-EntraApplicationServiceEndpoint.md │ │ │ ├── Get-EntraApplicationTemplate.md │ │ │ ├── Get-EntraAttributeSet.md │ │ │ ├── Get-EntraAuditDirectoryLog.md │ │ │ ├── Get-EntraAuditSignInLog.md │ │ │ ├── Get-EntraAuthorizationPolicy.md │ │ │ ├── Get-EntraConditionalAccessPolicy.md │ │ │ ├── Get-EntraContact.md │ │ │ ├── Get-EntraContactDirectReport.md │ │ │ ├── Get-EntraContactManager.md │ │ │ ├── Get-EntraContactMembership.md │ │ │ ├── Get-EntraContactThumbnailPhoto.md │ │ │ ├── Get-EntraContext.md │ │ │ ├── Get-EntraContract.md │ │ │ ├── Get-EntraCustomSecurityAttributeDefinition.md │ │ │ ├── Get-EntraCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Get-EntraDeletedApplication.md │ │ │ ├── Get-EntraDeletedDirectoryObject.md │ │ │ ├── Get-EntraDeletedGroup.md │ │ │ ├── Get-EntraDevice.md │ │ │ ├── Get-EntraDeviceRegisteredOwner.md │ │ │ ├── Get-EntraDeviceRegisteredUser.md │ │ │ ├── Get-EntraDirSyncConfiguration.md │ │ │ ├── Get-EntraDirSyncFeature.md │ │ │ ├── Get-EntraDirectoryObjectOnPremisesProvisioningError.md │ │ │ ├── Get-EntraDirectoryRole.md │ │ │ ├── Get-EntraDirectoryRoleAssignment.md │ │ │ ├── Get-EntraDirectoryRoleDefinition.md │ │ │ ├── Get-EntraDirectoryRoleMember.md │ │ │ ├── Get-EntraDirectoryRoleTemplate.md │ │ │ ├── Get-EntraDomain.md │ │ │ ├── Get-EntraDomainFederationSettings.md │ │ │ ├── Get-EntraDomainNameReference.md │ │ │ ├── Get-EntraDomainServiceConfigurationRecord.md │ │ │ ├── Get-EntraDomainVerificationDnsRecord.md │ │ │ ├── Get-EntraEnvironment.md │ │ │ ├── Get-EntraExtensionProperty.md │ │ │ ├── Get-EntraFeatureRolloutPolicy.md │ │ │ ├── Get-EntraFederationProperty.md │ │ │ ├── Get-EntraGroup.md │ │ │ ├── Get-EntraGroupAppRoleAssignment.md │ │ │ ├── Get-EntraGroupLifecyclePolicy.md │ │ │ ├── Get-EntraGroupMember.md │ │ │ ├── Get-EntraGroupOwner.md │ │ │ ├── Get-EntraGroupPermissionGrant.md │ │ │ ├── Get-EntraIdentityProvider.md │ │ │ ├── Get-EntraLifecyclePolicyGroup.md │ │ │ ├── Get-EntraNamedLocationPolicy.md │ │ │ ├── Get-EntraOAuth2PermissionGrant.md │ │ │ ├── Get-EntraObjectByObjectId.md │ │ │ ├── Get-EntraObjectSetting.md │ │ │ ├── Get-EntraPartnerInformation.md │ │ │ ├── Get-EntraPasswordPolicy.md │ │ │ ├── Get-EntraPermissionGrantConditionSet.md │ │ │ ├── Get-EntraPermissionGrantPolicy.md │ │ │ ├── Get-EntraPolicy.md │ │ │ ├── Get-EntraScopedRoleMembership.md │ │ │ ├── Get-EntraServicePrincipal.md │ │ │ ├── Get-EntraServicePrincipalAppRoleAssignedTo.md │ │ │ ├── Get-EntraServicePrincipalAppRoleAssignment.md │ │ │ ├── Get-EntraServicePrincipalCreatedObject.md │ │ │ ├── Get-EntraServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Get-EntraServicePrincipalKeyCredential.md │ │ │ ├── Get-EntraServicePrincipalMembership.md │ │ │ ├── Get-EntraServicePrincipalOAuth2PermissionGrant.md │ │ │ ├── Get-EntraServicePrincipalOwnedObject.md │ │ │ ├── Get-EntraServicePrincipalOwner.md │ │ │ ├── Get-EntraServicePrincipalPasswordCredential.md │ │ │ ├── Get-EntraSubscribedSku.md │ │ │ ├── Get-EntraTenantDetail.md │ │ │ ├── Get-EntraTrustedCertificateAuthority.md │ │ │ ├── Get-EntraUser.md │ │ │ ├── Get-EntraUserAppRoleAssignment.md │ │ │ ├── Get-EntraUserAuthenticationMethod.md │ │ │ ├── Get-EntraUserCreatedObject.md │ │ │ ├── Get-EntraUserDirectReport.md │ │ │ ├── Get-EntraUserExtension.md │ │ │ ├── Get-EntraUserLicenseDetail.md │ │ │ ├── Get-EntraUserManager.md │ │ │ ├── Get-EntraUserMembership.md │ │ │ ├── Get-EntraUserOAuth2PermissionGrant.md │ │ │ ├── Get-EntraUserOwnedDevice.md │ │ │ ├── Get-EntraUserOwnedObject.md │ │ │ ├── Get-EntraUserRegisteredDevice.md │ │ │ ├── Get-EntraUserThumbnailPhoto.md │ │ │ ├── New-EntraAdministrativeUnit.md │ │ │ ├── New-EntraApplication.md │ │ │ ├── New-EntraApplicationExtensionProperty.md │ │ │ ├── New-EntraApplicationFromApplicationTemplate.md │ │ │ ├── New-EntraApplicationKey.md │ │ │ ├── New-EntraApplicationKeyCredential.md │ │ │ ├── New-EntraApplicationPassword.md │ │ │ ├── New-EntraApplicationPasswordCredential.md │ │ │ ├── New-EntraAttributeSet.md │ │ │ ├── New-EntraConditionalAccessPolicy.md │ │ │ ├── New-EntraCustomSecurityAttributeDefinition.md │ │ │ ├── New-EntraDevice.md │ │ │ ├── New-EntraDirectoryRoleAssignment.md │ │ │ ├── New-EntraDirectoryRoleDefinition.md │ │ │ ├── New-EntraDomain.md │ │ │ ├── New-EntraFeatureRolloutPolicy.md │ │ │ ├── New-EntraGroup.md │ │ │ ├── New-EntraGroupAppRoleAssignment.md │ │ │ ├── New-EntraGroupLifecyclePolicy.md │ │ │ ├── New-EntraIdentityProvider.md │ │ │ ├── New-EntraInvitation.md │ │ │ ├── New-EntraNamedLocationPolicy.md │ │ │ ├── New-EntraOauth2PermissionGrant.md │ │ │ ├── New-EntraPermissionGrantConditionSet.md │ │ │ ├── New-EntraPermissionGrantPolicy.md │ │ │ ├── New-EntraPolicy.md │ │ │ ├── New-EntraServicePrincipal.md │ │ │ ├── New-EntraServicePrincipalAppRoleAssignment.md │ │ │ ├── New-EntraServicePrincipalKeyCredential.md │ │ │ ├── New-EntraServicePrincipalPasswordCredential.md │ │ │ ├── New-EntraTrustedCertificateAuthority.md │ │ │ ├── New-EntraUser.md │ │ │ ├── New-EntraUserAppRoleAssignment.md │ │ │ ├── Remove-EntraAdministrativeUnit.md │ │ │ ├── Remove-EntraAdministrativeUnitMember.md │ │ │ ├── Remove-EntraApplication.md │ │ │ ├── Remove-EntraApplicationExtensionProperty.md │ │ │ ├── Remove-EntraApplicationKey.md │ │ │ ├── Remove-EntraApplicationKeyCredential.md │ │ │ ├── Remove-EntraApplicationOwner.md │ │ │ ├── Remove-EntraApplicationPassword.md │ │ │ ├── Remove-EntraApplicationPasswordCredential.md │ │ │ ├── Remove-EntraApplicationVerifiedPublisher.md │ │ │ ├── Remove-EntraConditionalAccessPolicy.md │ │ │ ├── Remove-EntraContact.md │ │ │ ├── Remove-EntraDeletedApplication.md │ │ │ ├── Remove-EntraDeletedDirectoryObject.md │ │ │ ├── Remove-EntraDevice.md │ │ │ ├── Remove-EntraDeviceRegisteredOwner.md │ │ │ ├── Remove-EntraDeviceRegisteredUser.md │ │ │ ├── Remove-EntraDirectoryRoleAssignment.md │ │ │ ├── Remove-EntraDirectoryRoleDefinition.md │ │ │ ├── Remove-EntraDirectoryRoleMember.md │ │ │ ├── Remove-EntraDomain.md │ │ │ ├── Remove-EntraExternalDomainFederation.md │ │ │ ├── Remove-EntraFeatureRolloutPolicy.md │ │ │ ├── Remove-EntraFeatureRolloutPolicyDirectoryObject.md │ │ │ ├── Remove-EntraGroup.md │ │ │ ├── Remove-EntraGroupAppRoleAssignment.md │ │ │ ├── Remove-EntraGroupLifecyclePolicy.md │ │ │ ├── Remove-EntraGroupMember.md │ │ │ ├── Remove-EntraGroupOwner.md │ │ │ ├── Remove-EntraIdentityProvider.md │ │ │ ├── Remove-EntraLifecyclePolicyGroup.md │ │ │ ├── Remove-EntraNamedLocationPolicy.md │ │ │ ├── Remove-EntraOAuth2PermissionGrant.md │ │ │ ├── Remove-EntraPermissionGrantConditionSet.md │ │ │ ├── Remove-EntraPermissionGrantPolicy.md │ │ │ ├── Remove-EntraPolicy.md │ │ │ ├── Remove-EntraScopedRoleMembership.md │ │ │ ├── Remove-EntraServicePrincipal.md │ │ │ ├── Remove-EntraServicePrincipalAppRoleAssignment.md │ │ │ ├── Remove-EntraServicePrincipalDelegatedPermissionClassification.md │ │ │ ├── Remove-EntraServicePrincipalKeyCredential.md │ │ │ ├── Remove-EntraServicePrincipalOwner.md │ │ │ ├── Remove-EntraServicePrincipalPasswordCredential.md │ │ │ ├── Remove-EntraTrustedCertificateAuthority.md │ │ │ ├── Remove-EntraUser.md │ │ │ ├── Remove-EntraUserAppRoleAssignment.md │ │ │ ├── Remove-EntraUserExtension.md │ │ │ ├── Remove-EntraUserManager.md │ │ │ ├── Reset-EntraLifeCycleGroup.md │ │ │ ├── Reset-EntraStrongAuthenticationMethodByUpn.md │ │ │ ├── Restore-EntraDeletedApplication.md │ │ │ ├── Restore-EntraDeletedDirectoryObject.md │ │ │ ├── Revoke-EntraSignedInUserAllRefreshToken.md │ │ │ ├── Revoke-EntraUserAllRefreshToken.md │ │ │ ├── Select-EntraGroupIdsContactIsMemberOf.md │ │ │ ├── Select-EntraGroupIdsGroupIsMemberOf.md │ │ │ ├── Select-EntraGroupIdsServicePrincipalIsMemberOf.md │ │ │ ├── Select-EntraGroupIdsUserIsMemberOf.md │ │ │ ├── Set-EntraAdministrativeUnit.md │ │ │ ├── Set-EntraApplication.md │ │ │ ├── Set-EntraApplicationLogo.md │ │ │ ├── Set-EntraApplicationVerifiedPublisher.md │ │ │ ├── Set-EntraAttributeSet.md │ │ │ ├── Set-EntraAuthorizationPolicy.md │ │ │ ├── Set-EntraConditionalAccessPolicy.md │ │ │ ├── Set-EntraCustomSecurityAttributeDefinition.md │ │ │ ├── Set-EntraCustomSecurityAttributeDefinitionAllowedValue.md │ │ │ ├── Set-EntraDevice.md │ │ │ ├── Set-EntraDirSyncConfiguration.md │ │ │ ├── Set-EntraDirSyncEnabled.md │ │ │ ├── Set-EntraDirSyncFeature.md │ │ │ ├── Set-EntraDirectoryRoleDefinition.md │ │ │ ├── Set-EntraDomain.md │ │ │ ├── Set-EntraDomainFederationSettings.md │ │ │ ├── Set-EntraFeatureRolloutPolicy.md │ │ │ ├── Set-EntraGroup.md │ │ │ ├── Set-EntraGroupLifecyclePolicy.md │ │ │ ├── Set-EntraIdentityProvider.md │ │ │ ├── Set-EntraNamedLocationPolicy.md │ │ │ ├── Set-EntraPartnerInformation.md │ │ │ ├── Set-EntraPermissionGrantConditionSet.md │ │ │ ├── Set-EntraPermissionGrantPolicy.md │ │ │ ├── Set-EntraPolicy.md │ │ │ ├── Set-EntraServicePrincipal.md │ │ │ ├── Set-EntraTenantDetail.md │ │ │ ├── Set-EntraTrustedCertificateAuthority.md │ │ │ ├── Set-EntraUser.md │ │ │ ├── Set-EntraUserExtension.md │ │ │ ├── Set-EntraUserLicense.md │ │ │ ├── Set-EntraUserManager.md │ │ │ ├── Set-EntraUserPassword.md │ │ │ ├── Set-EntraUserThumbnailPhoto.md │ │ │ ├── Test-EntraScript.md │ │ │ ├── Update-EntraOauth2PermissionGrant.md │ │ │ ├── Update-EntraSignedInUserPassword.md │ │ │ └── Update-EntraUserFromFederated.md │ │ ├── index.md │ │ └── toc.yml │ └── future │ │ ├── Microsoft.Graph.Entra.Beta │ │ └── Get-EntraBetaPrivilegedRoleAssignmentRequest.md │ │ └── Microsoft.Graph.Entra │ │ ├── Get-CrossCloudVerificationCode.md │ │ ├── Get-EntraApplicationProxyApplication.md │ │ ├── Get-EntraApplicationProxyApplicationConnectorGroup.md │ │ ├── Get-EntraApplicationProxyConnector.md │ │ ├── Get-EntraApplicationProxyConnectorGroup.md │ │ ├── Get-EntraApplicationProxyConnectorGroupMember.md │ │ ├── Get-EntraApplicationProxyConnectorGroupMembers.md │ │ ├── Get-EntraApplicationProxyConnectorMemberOf.md │ │ ├── New-EntraApplicationProxyApplication.md │ │ ├── New-EntraApplicationProxyConnectorGroup.md │ │ ├── Remove-EntraApplicationProxyApplication.md │ │ ├── Remove-EntraApplicationProxyApplicationConnectorGroup.md │ │ ├── Remove-EntraApplicationProxyConnectorGroup.md │ │ ├── Set-EntraApplicationProxyApplication.md │ │ ├── Set-EntraApplicationProxyApplicationCustomDomainCertificate.md │ │ ├── Set-EntraApplicationProxyApplicationSingleSignOn.md │ │ ├── Set-EntraApplicationProxyConnector.md │ │ └── Set-EntraApplicationProxyConnectorGroup.md └── mapping │ └── monikerMapping.json ├── samples ├── README.md ├── authentication │ ├── create-custom-app-with-application-permissions.ps1 │ └── create-custom-app-with-delegated-permissions.ps1 ├── batch │ └── Invoke-BatchWithRetry.ps1 ├── create-custom-app-with-application-permissions.ps1 ├── create-custom-app-with-delegated-permissions.ps1 ├── entitlement-management │ └── identify-assignment-policies-without-approval.ps1 ├── identify-assignment-policies-without-approval.ps1 ├── migration │ ├── export-apps-with-expiring-secrets-modified.ps1 │ ├── export-apps-with-expiring-secrets.ps1 │ └── sampleGroups.ps1 └── zero-trust │ ├── README.md │ └── get-inactive-apps-with-high-priv-permissions.ps1 ├── src ├── AzureADPreviewToEntraBetaMapping.json ├── AzureADToEntraMapping.json ├── CommandMap.ps1 ├── CommandTranslation.ps1 ├── CompatibilityAdapter.ps1 ├── CompatibilityAdapterBuilder.ps1 ├── Create-ModuleMappingFile.ps1 ├── DataMap.ps1 ├── Entra-ModuleMapping.json ├── EntraAliasDefinitions.ps1 ├── EntraBeta-ModuleMapping.json ├── EntraBetaAliasDefinitions.ps1 ├── EntraModuleBuilder.ps1 ├── EntraModuleSplitter.ps1 ├── Get-MissingCmds.ps1 ├── MappedCmdCollection.ps1 └── README.md ├── test ├── Common-Functions.ps1 ├── Entra │ ├── Applications │ │ ├── Add-EntraApplicationOwner.Tests.ps1 │ │ ├── Add-EntraServicePrincipalDelegatedPermissionClassification.Tests.ps1 │ │ ├── Add-EntraServicePrincipalOwner.Tests.ps1 │ │ ├── Get-EntraApplication.Tests.ps1 │ │ ├── Get-EntraApplicationExtensionProperty.Tests.ps1 │ │ ├── Get-EntraApplicationKeyCredential.Tests.ps1 │ │ ├── Get-EntraApplicationLogo.Tests.ps1 │ │ ├── Get-EntraApplicationModule.Tests.ps1 │ │ ├── Get-EntraApplicationOwner.Tests.ps1 │ │ ├── Get-EntraApplicationPasswordCredential.Tests.ps1 │ │ ├── Get-EntraApplicationTemplate.Tests.ps1 │ │ ├── Get-EntraDeletedApplication.Tests.ps1 │ │ ├── Get-EntraDeletedServicePrincipal.Tests.ps1 │ │ ├── Get-EntraServicePrincipal.Tests.ps1 │ │ ├── Get-EntraServicePrincipalAppRoleAssignedTo.Tests.ps1 │ │ ├── Get-EntraServicePrincipalAppRoleAssignment.Tests.ps1 │ │ ├── Get-EntraServicePrincipalDelegatedPermissionClassification.Tests.ps1 │ │ ├── Get-EntraServicePrincipalKeyCredential.Tests.ps1 │ │ ├── Get-EntraServicePrincipalMembership.Tests.ps1 │ │ ├── Get-EntraServicePrincipalOAuth2PermissionGrant.Tests.ps1 │ │ ├── Get-EntraServicePrincipalOwnedObject.Tests.ps1 │ │ ├── Get-EntraServicePrincipalOwner.Tests.ps1 │ │ ├── Get-EntraServicePrincipalPasswordCredential.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ ├── New-EntraApplication.Tests.ps1 │ │ ├── New-EntraApplicationExtensionProperty.Tests.ps1 │ │ ├── New-EntraApplicationFromApplicationTemplate.Tests.ps1 │ │ ├── New-EntraApplicationKeyCredential.Tests.ps1 │ │ ├── New-EntraApplicationPassword.Tests.ps1 │ │ ├── New-EntraApplicationPasswordCredential.Tests.ps1 │ │ ├── New-EntraServicePrincipal.Tests.ps1 │ │ ├── New-EntraServicePrincipalAppRoleAssignment.Tests.ps1 │ │ ├── New-EntraServicePrincipalKeyCredential.Tests.ps1 │ │ ├── New-EntraServicePrincipalPasswordCredential.Tests.ps1 │ │ ├── Remove-EntraApplication.Tests.ps1 │ │ ├── Remove-EntraApplicationExtensionProperty.Tests.ps1 │ │ ├── Remove-EntraApplicationOwner.Tests.ps1 │ │ ├── Remove-EntraApplicationPassword.Tests.ps1 │ │ ├── Remove-EntraApplicationPasswordCredential.Tests.ps1 │ │ ├── Remove-EntraDeletedApplication.Tests.ps1 │ │ ├── Remove-EntraDeletedDirectoryObject.Tests.ps1 │ │ ├── Remove-EntraServicePrincipal.Tests.ps1 │ │ ├── Remove-EntraServicePrincipalAppRoleAssignment.Tests.ps1 │ │ ├── Remove-EntraServicePrincipalDelegatedPermissionClassification.Tests.ps1 │ │ ├── Remove-EntraServicePrincipalOwner.Tests.ps1 │ │ ├── Remove-EntraServicePrincipalPasswordCredential.Tests.ps1 │ │ ├── Restore-EntraDeletedApplication.Tests.ps1 │ │ ├── Select-EntraGroupIdsServicePrincipalIsMemberOf.Tests.ps1 │ │ ├── Set-EntraApplication.Tests.ps1 │ │ ├── Set-EntraApplicationLogo.Tests.ps1 │ │ ├── Set-EntraServicePrincipal.Tests.ps1 │ │ └── Valid.Tests.ps1 │ ├── Authentication │ │ ├── Connect-Entra.Tests.ps1 │ │ ├── Disconnect-Entra.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ ├── Revoke-EntraSignedInUserAllRefreshToken.Tests.ps1 │ │ ├── Revoke-EntraUserAllRefreshToken.Tests.ps1 │ │ └── Valid.Tests.ps1 │ ├── CertificateBasedAuthentication │ │ ├── Get-EntraUserCBAAuthorizationInfo.Tests.ps1 │ │ ├── Get-EntraUserCertificateUserIdsFromCertificate.Tests.ps1 │ │ └── Set-EntraUserCBACertificateUserId.Tests.ps1 │ ├── DirectoryManagement │ │ ├── Add-EntraAdministrativeUnitMember.Tests.ps1 │ │ ├── Add-EntraCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 │ │ ├── Add-EntraDeviceRegisteredOwner.Tests.ps1 │ │ ├── Add-EntraDeviceRegisteredUser.Tests.ps1 │ │ ├── Add-EntraDirectoryRoleMember.Tests.ps1 │ │ ├── Add-EntraScopedRoleMembership.Tests.ps1 │ │ ├── Enable-EntraDirectoryRole.Tests.ps1 │ │ ├── Get-EntraAccountSku.Tests.ps1 │ │ ├── Get-EntraAdministrativeUnit.Tests.ps1 │ │ ├── Get-EntraAdministrativeUnitMember.Tests.ps1 │ │ ├── Get-EntraAttributeSet.Tests.ps1 │ │ ├── Get-EntraContact.Tests.ps1 │ │ ├── Get-EntraContactMembership.Tests.ps1 │ │ ├── Get-EntraCustomSecurityAttributeDefinition.Tests.ps1 │ │ ├── Get-EntraCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 │ │ ├── Get-EntraDeletedAdministrativeUnit.Tests.ps1 │ │ ├── Get-EntraDeletedDevice.Tests.ps1 │ │ ├── Get-EntraDeletedDirectoryObject.Tests.ps1 │ │ ├── Get-EntraDevice.Tests.ps1 │ │ ├── Get-EntraDeviceRegisteredOwner.Tests.ps1 │ │ ├── Get-EntraDeviceRegisteredUser.Tests.ps1 │ │ ├── Get-EntraDirSyncConfiguration.Tests.ps1 │ │ ├── Get-EntraDirSyncFeature.Tests.ps1 │ │ ├── Get-EntraDirectoryObject.Tests.ps1 │ │ ├── Get-EntraDirectoryObjectOnPremisesProvisioningError.Tests.ps1 │ │ ├── Get-EntraDirectoryRole.Tests.ps1 │ │ ├── Get-EntraDirectoryRoleMember.Tests.ps1 │ │ ├── Get-EntraDirectoryRoleTemplate.Tests.ps1 │ │ ├── Get-EntraDomain.Tests.ps1 │ │ ├── Get-EntraDomainFederationSettings.Tests.ps1 │ │ ├── Get-EntraDomainNameReference.Tests.ps1 │ │ ├── Get-EntraDomainServiceConfigurationRecord.Tests.ps1 │ │ ├── Get-EntraDomainVerificationDnsRecord.Tests.ps1 │ │ ├── Get-EntraExtensionProperty.Tests.ps1 │ │ ├── Get-EntraFederationProperty.Tests.ps1 │ │ ├── Get-EntraPasswordPolicy.Tests.ps1 │ │ ├── Get-EntraScopedRoleMembership.Tests.ps1 │ │ ├── Get-EntraSubscribedSku.Tests.ps1 │ │ ├── Get-EntraSubscription.Tests.ps1 │ │ ├── Get-EntraTenantDetail.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ ├── New-EntraAdministrativeUnit.Tests.ps1 │ │ ├── New-EntraAttributeSet.Tests.ps1 │ │ ├── New-EntraCustomSecurityAttributeDefinition.Tests.ps1 │ │ ├── New-EntraDomain.Tests.ps1 │ │ ├── Remove-EntraAdministrativeUnit.Tests.ps1 │ │ ├── Remove-EntraAdministrativeUnitMember.Tests.ps1 │ │ ├── Remove-EntraDevice.Tests.ps1 │ │ ├── Remove-EntraDeviceRegisteredOwner.Tests.ps1 │ │ ├── Remove-EntraDeviceRegisteredUser.Tests.ps1 │ │ ├── Remove-EntraDirectoryRoleMember.Tests.ps1 │ │ ├── Remove-EntraDomain.Tests.ps1 │ │ ├── Remove-EntraScopedRoleMembership.Tests.ps1 │ │ ├── Resolve-EntraTenant.Tests.ps1 │ │ ├── Restore-EntraDeletedDirectoryObject.Tests.ps1 │ │ ├── Set-EntraAdministrativeUnit.Tests.ps1 │ │ ├── Set-EntraAttributeSet.Tests.ps1 │ │ ├── Set-EntraCustomSecurityAttributeDefinition.Tests.ps1 │ │ ├── Set-EntraCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 │ │ ├── Set-EntraDevice.Tests.ps1 │ │ ├── Set-EntraDirSyncConfiguration.Tests.ps1 │ │ ├── Set-EntraDirSyncEnabled.Tests.ps1 │ │ ├── Set-EntraDirSyncFeature.Tests.ps1 │ │ ├── Set-EntraDomain.Tests.ps1 │ │ ├── Set-EntraDomainFederationSettings.Tests.ps1 │ │ ├── Set-EntraPartnerInformation.Tests.ps1 │ │ ├── Set-EntraTenantDetail.Tests.ps1 │ │ └── Valid.Tests.ps1 │ ├── Entra.Tests.ps1 │ ├── EntraCmdletsMap.ps1 │ ├── Governance │ │ ├── Get-EntraDirectoryRoleAssignment.Tests.ps1 │ │ ├── Get-EntraDirectoryRoleDefinition.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ ├── New-EntraDirectoryRoleAssignment.Tests.ps1 │ │ ├── New-EntraDirectoryRoleDefinition.Tests.ps1 │ │ ├── Remove-EntraDirectoryRoleAssignment.Tests.ps1 │ │ ├── Remove-EntraDirectoryRoleDefinition.Tests.ps1 │ │ ├── Set-EntraDirectoryRoleDefinition.Tests.ps1 │ │ └── Valid.Tests.ps1 │ ├── Groups │ │ ├── Add-EntraGroupMember.Tests.ps1 │ │ ├── Add-EntraGroupOwner.Tests.ps1 │ │ ├── Add-EntraLifecyclePolicyGroup.Tests.ps1 │ │ ├── Get-EntraDeletedGroup.Tests.ps1 │ │ ├── Get-EntraGroup.Tests.ps1 │ │ ├── Get-EntraGroupAppRoleAssignment.Tests.ps1 │ │ ├── Get-EntraGroupLifecyclePolicy.Tests.ps1 │ │ ├── Get-EntraGroupMember.Tests.ps1 │ │ ├── Get-EntraGroupOwner.Tests.ps1 │ │ ├── Get-EntraLifecyclePolicyGroup.Tests.ps1 │ │ ├── Get-EntraObjectSetting.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ ├── New-EntraGroup.Tests.ps1 │ │ ├── New-EntraGroupAppRoleAssignment.Tests.ps1 │ │ ├── New-EntraGroupLifecyclePolicy.Tests.ps1 │ │ ├── Remove-EntraGroup.Tests.ps1 │ │ ├── Remove-EntraGroupAppRoleAssignment.Tests.ps1 │ │ ├── Remove-EntraGroupLifecyclePolicy.Tests.ps1 │ │ ├── Remove-EntraGroupMember.Tests.ps1 │ │ ├── Remove-EntraGroupOwner.Tests.ps1 │ │ ├── Remove-EntraLifecyclePolicyGroup.Tests.ps1 │ │ ├── Reset-EntraLifeCycleGroup.Tests.ps1 │ │ ├── Select-EntraGroupIdsContactIsMemberOf.Tests.ps1 │ │ ├── Select-EntraGroupIdsGroupIsMemberOf.Tests.ps1 │ │ ├── Select-EntraGroupIdsUserIsMemberOf.Tests.ps1 │ │ ├── Set-EntraGroup.Tests.ps1 │ │ ├── Set-EntraGroupLifecyclePolicy.Tests.ps1 │ │ └── Valid.Tests.ps1 │ ├── New-EntraInvitation.Tests.ps1 │ ├── Reports │ │ ├── Get-EntraAuditDirectoryLog.Tests.ps1 │ │ ├── Get-EntraAuditSignInLog.Tests.ps1 │ │ ├── Get-EntraAuthenticationMethodUserRegistrationDetailReport.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ └── Valid.Tests.ps1 │ ├── SignIns │ │ ├── Get-EntraAuthorizationPolicy.Tests.ps1 │ │ ├── Get-EntraConditionalAccessPolicy.Tests.ps1 │ │ ├── Get-EntraFeatureRolloutPolicy.Tests.ps1 │ │ ├── Get-EntraIdentityProvider.Tests.ps1 │ │ ├── Get-EntraOAuth2PermissionGrant.Tests.ps1 │ │ ├── Get-EntraPermissionGrantConditionSet.Tests.ps1 │ │ ├── Get-EntraPermissionGrantPolicy.Tests.ps1 │ │ ├── Get-EntraPolicy.Tests.ps1 │ │ ├── Get-EntraTrustedCertificateAuthority.Tests.ps1 │ │ ├── Get-EntraUserAuthenticationMethod.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ ├── New-EntraConditionalAccessPolicy.Tests.ps1 │ │ ├── New-EntraFeatureRolloutPolicy.Tests.ps1 │ │ ├── New-EntraIdentityProvider.Tests.ps1 │ │ ├── New-EntraInvitation.Tests.ps1 │ │ ├── New-EntraNamedLocationPolicy.Tests.ps1 │ │ ├── New-EntraOauth2PermissionGrant.Tests.ps1 │ │ ├── New-EntraPermissionGrantConditionSet.Tests.ps1 │ │ ├── New-EntraPermissionGrantPolicy.Tests.ps1 │ │ ├── New-EntraPolicy.Tests.ps1 │ │ ├── New-EntraTrustedCertificateAuthority.Tests.ps1 │ │ ├── Remove-EntraFeatureRolloutPolicy.Tests.ps1 │ │ ├── Remove-EntraFeatureRolloutPolicyDirectoryObject.Tests.ps1 │ │ ├── Remove-EntraIdentityProvider.Tests.ps1 │ │ ├── Remove-EntraNamedLocationPolicy.Tests.ps1 │ │ ├── Remove-EntraOAuth2PermissionGrant.Tests.ps1 │ │ ├── Remove-EntraPermissionGrantConditionSet.Tests.ps1 │ │ ├── Remove-EntraPermissionGrantPolicy.Tests.ps1 │ │ ├── Remove-EntraPolicy.Tests.ps1 │ │ ├── Remove-EntraTrustedCertificateAuthority.Tests.ps1 │ │ ├── Reset-EntraStrongAuthenticationMethodByUpn.Tests.ps1 │ │ ├── Set-EntraAuthorizationPolicy.Tests.ps1 │ │ ├── Set-EntraConditionalAccessPolicy.Tests.ps1 │ │ ├── Set-EntraFeatureRolloutPolicy.Tests.ps1 │ │ ├── Set-EntraNamedLocationPolicy.Tests.ps1 │ │ ├── Set-EntraPermissionGrantConditionSet.Tests.ps1 │ │ ├── Set-EntraPermissionGrantPolicy.Tests.ps1 │ │ ├── Set-EntraPolicy.Tests.ps1 │ │ ├── Set-EntraTrustedCertificateAuthority.Tests.ps1 │ │ └── Valid.Tests.ps1 │ └── Users │ │ ├── Get-EntraDeletedUser.Tests.ps1 │ │ ├── Get-EntraInactiveSignInUser.Tests.ps1 │ │ ├── Get-EntraUser.Tests.ps1 │ │ ├── Get-EntraUserAdministrativeUnit.Tests.ps1 │ │ ├── Get-EntraUserAppRoleAssignment.Tests.ps1 │ │ ├── Get-EntraUserCreatedObject.Tests.ps1 │ │ ├── Get-EntraUserDirectReport.Tests.ps1 │ │ ├── Get-EntraUserExtension.Test.ps1 │ │ ├── Get-EntraUserGroup.Tests.ps1 │ │ ├── Get-EntraUserInactiveSignIn.Tests.ps1 │ │ ├── Get-EntraUserLicenseDetail.Tests.ps1 │ │ ├── Get-EntraUserManager.Tests.ps1 │ │ ├── Get-EntraUserMembership.Tests.ps1 │ │ ├── Get-EntraUserOAuth2PermissionGrant.Tests.ps1 │ │ ├── Get-EntraUserOwnedDevice.Tests.ps1 │ │ ├── Get-EntraUserOwnedObject.Tests.ps1 │ │ ├── Get-EntraUserRegisteredDevice.Tests.ps1 │ │ ├── Get-EntraUserRole.Tests.ps1 │ │ ├── Get-EntraUserSponsor.Tests.ps1 │ │ ├── Invalid.Tests.ps1 │ │ ├── Module.Tests.ps1 │ │ ├── New-EntraUser.Tests.ps1 │ │ ├── New-EntraUserAppRoleAssignment.Tests.ps1 │ │ ├── Remove-EntraUser.Tests.ps1 │ │ ├── Remove-EntraUserAppRoleAssignment.Tests.ps1 │ │ ├── Remove-EntraUserExtension.Tests.ps1 │ │ ├── Remove-EntraUserManager.Tests.ps1 │ │ ├── Remove-EntraUserSponsor.Tests.ps1 │ │ ├── Set-EntraSignedInUserPassword.Tests.ps1 │ │ ├── Set-EntraUser.Tests.ps1 │ │ ├── Set-EntraUserExtension.Tests.ps1 │ │ ├── Set-EntraUserLicense.Tests.ps1 │ │ ├── Set-EntraUserManager.Tests.ps1 │ │ ├── Set-EntraUserPasswordProfile.Tests.ps1 │ │ ├── Set-EntraUserSponsor.Tests.ps1 │ │ ├── Set-EntraUserThumbnailPhoto.Tests.ps1 │ │ ├── Update-EntraUserFromFederated.Tests.ps1 │ │ └── Valid.Tests.ps1 └── EntraBeta │ ├── Applications │ ├── Add-EntraBetaApplicationPolicy.Tests.ps1 │ ├── Get-EntraBetaApplication.Tests.ps1 │ ├── Get-EntraBetaApplicationLogo.Tests.ps1 │ ├── Get-EntraBetaApplicationOwner.Tests.ps1 │ ├── Get-EntraBetaApplicationPasswordCredential.Tests.ps1 │ ├── Get-EntraBetaApplicationPolicy.Tests.ps1 │ ├── Get-EntraBetaApplicationTemplate.Tests.ps1 │ ├── Get-EntraBetaDeletedApplication.Tests.ps1 │ ├── Get-EntraBetaDeletedServicePrincipal.Tests.ps1 │ ├── Get-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 │ ├── Get-EntraBetaServicePrincipal.Tests.ps1 │ ├── Get-EntraBetaServicePrincipalOwnedObject.Tests.ps1 │ ├── Get-EntraBetaServicePrincipalOwner.Tests.ps1 │ ├── Grant-EntraBetaMCPServerPermission.Tests.ps1 │ ├── New-EntraBetaApplication.Tests.ps1 │ ├── New-EntraBetaApplicationFromApplicationTemplate.Tests.ps1 │ ├── New-EntraBetaApplicationKeyCredential.Tests.ps1 │ ├── New-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 │ ├── New-EntraBetaServicePrincipalKeyCredentials.Tests.ps1 │ ├── New-EntraBetaServicePrincipalPasswordCredential.Tests.ps1 │ ├── Remove-EntraBetaApplication.Tests.ps1 │ ├── Remove-EntraBetaApplicationPolicy.Tests.ps1 │ ├── Remove-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 │ ├── Revoke-EntraBetaMCPServerPermission.Tests.ps1 │ ├── Set-EntraBetaApplication.Tests.ps1 │ ├── Set-EntraBetaApplicationLogo.Tests.ps1 │ ├── Set-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 │ └── Set-EntraBetaServicePrincipal.Tests.ps1 │ ├── DirectoryManagement │ ├── Add-EntraBetaAdministrativeUnitMember.Tests.ps1 │ ├── Add-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 │ ├── Add-EntraBetaDeviceRegisteredOwner.Tests.ps1 │ ├── Add-EntraBetaDeviceRegisteredUser.Tests.ps1 │ ├── Add-EntraBetaScopedRoleMembership.Tests.ps1 │ ├── Confirm-EntraBetaDomain.Tests.ps1 │ ├── Get-EntraBetaAccountSku.Tests.ps1 │ ├── Get-EntraBetaAdministrativeUnit.Tests.ps1 │ ├── Get-EntraBetaAdministrativeUnitMember.Tests.ps1 │ ├── Get-EntraBetaAttributeSet.Tests.ps1 │ ├── Get-EntraBetaContact.Tests.ps1 │ ├── Get-EntraBetaCustomSecurityAttributeDefinition.Tests.ps1 │ ├── Get-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 │ ├── Get-EntraBetaDeletedAdministrativeUnit.Tests.ps1 │ ├── Get-EntraBetaDeletedDevice.Tests.ps1 │ ├── Get-EntraBetaDeletedDirectoryObject.Tests.ps1 │ ├── Get-EntraBetaDevice.Tests.ps1 │ ├── Get-EntraBetaDeviceRegisteredOwner.Tests.ps1 │ ├── Get-EntraBetaDeviceRegisteredUser.Tests.ps1 │ ├── Get-EntraBetaDirSyncConfiguration.Tests.ps1 │ ├── Get-EntraBetaDirSyncFeature.Tests.ps1 │ ├── Get-EntraBetaDirectoryObjectOnPremisesProvisioningError.Tests.ps1 │ ├── Get-EntraBetaDirectorySetting.Tests.ps1 │ ├── Get-EntraBetaDirectorySettingTemplate.Tests.ps1 │ ├── Get-EntraBetaDomainFederationSettings.Tests.ps1 │ ├── Get-EntraBetaFederationProperty.Tests.ps1 │ ├── Get-EntraBetaPasswordPolicy.Tests.ps1 │ ├── Get-EntraBetaScopedRoleMembership.Tests.ps1 │ ├── Get-EntraBetaSubscription.Tests.ps1 │ ├── New-EntraBetaAdministrativeUnit.Tests.ps1 │ ├── New-EntraBetaAdministrativeUnitMember.Tests.ps1 │ ├── New-EntraBetaAttributeSet.Tests.ps1 │ ├── New-EntraBetaCustomSecurityAttributeDefinition.Tests.ps1 │ ├── New-EntraBetaDirectorySetting.Tests.ps1 │ ├── Remove-EntraBetaAdministrativeUnit.Tests.ps1 │ ├── Remove-EntraBetaAdministrativeUnitMember.Tests.ps1 │ ├── Remove-EntraBetaDevice.Tests.ps1 │ ├── Remove-EntraBetaDeviceRegisteredOwner.Tests.ps1 │ ├── Remove-EntraBetaDeviceRegisteredUser.Tests.ps1 │ ├── Remove-EntraBetaDirectorySetting.Tests.ps1 │ ├── Remove-EntraBetaScopedRoleMembership.Tests.ps1 │ ├── Resolve-EntraBetaTenant.Tests.ps1 │ ├── Restore-EntraBetaDeletedDirectoryObject.Tests.ps1 │ ├── Set-EntraBetaAdministrativeUnit.Tests.ps1 │ ├── Set-EntraBetaAttributeSet.Tests.ps1 │ ├── Set-EntraBetaCustomSecurityAttributeDefinition.Tests.ps1 │ ├── Set-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 │ ├── Set-EntraBetaDevice.Tests.ps1 │ ├── Set-EntraBetaDirSyncConfiguration.Tests.ps1 │ ├── Set-EntraBetaDirSyncEnabled.Tests.ps1 │ ├── Set-EntraBetaDirSyncFeature.Tests.ps1 │ ├── Set-EntraBetaDirectorySetting.Tests.ps1 │ ├── Set-EntraBetaDomainFederationSettings.Tests.ps1 │ └── Set-EntraBetaPartnerInformation.Tests.ps1 │ ├── EntraBeta.Tests.ps1 │ ├── General.Tests.ps1 │ ├── Governance │ ├── Get-EntraBetaDirectoryRoleAssignment.Tests.ps1 │ ├── Get-EntraBetaDirectoryRoleDefinition.Tests.ps1 │ ├── Get-EntraBetaPrivilegedResource.Tests.ps1 │ ├── Get-EntraBetaPrivilegedRole.Tests.ps1 │ ├── Get-EntraBetaPrivilegedRoleDefinition.Tests.ps1 │ ├── Get-EntraBetaPrivilegedRoleSetting.Tests.ps1 │ ├── New-EntraBetaDirectoryRoleAssignment.Tests.ps1 │ ├── New-EntraBetaDirectoryRoleDefinition.Tests.ps1 │ ├── New-EntraBetaPrivilegedRoleAssignment.Tests.ps1 │ ├── Remove-EntraBetaDirectoryRoleAssignment.Tets.ps1 │ ├── Remove-EntraBetaDirectoryRoleDefinition.Tests.ps1 │ ├── Set-EntraBetaAppRoleToApplicationUser.Tests.ps1 │ ├── Set-EntraBetaDirectoryRoleDefinition.Tests.ps1 │ └── Set-EntraBetaPrivilegedRoleSetting.Tests.ps1 │ ├── Groups │ ├── Add-EntraBetaGroupMember.Tests.ps1 │ ├── Add-EntraBetaGroupOwner.Tests.ps1 │ ├── Get-EntraBetaDeletedGroup.Tests.ps1 │ ├── Get-EntraBetaGroup.Tests.ps1 │ ├── Get-EntraBetaGroupAppRoleAssignment.Tests.ps1 │ ├── Get-EntraBetaGroupLifecyclePolicy.Tests.ps1 │ ├── Get-EntraBetaGroupMember.Tests.ps1 │ ├── Get-EntraBetaGroupOwner.Tests.ps1 │ ├── Get-EntraBetaObjectSetting.Tests.ps1 │ ├── New-EntraBetaGroup.Tests.ps1 │ ├── New-EntraBetaGroupAppRoleAssignment.Tests.ps1 │ ├── New-EntraBetaObjectSetting.Tests.ps1 │ ├── Remove-EntraBetaGroup.Tests.ps1 │ ├── Remove-EntraBetaGroupAppRoleAssignment.Tests.ps1 │ ├── Remove-EntraBetaGroupLifecyclePolicy.Tests.ps1 │ ├── Remove-EntraBetaGroupMember.Tests.ps1 │ ├── Remove-EntraBetaGroupOwner.Tests.ps1 │ ├── Remove-EntraBetaObjectSetting.Tests.ps1 │ ├── Set-EntraBetaGroup.Tests.ps1 │ ├── Set-EntraBetaGroupLifecyclePolicy.Tests.ps1 │ └── Set-EntraBetaObjectSetting.Tests.ps1 │ ├── NetworkAccess │ ├── Enable-EntraBetaGlobalSecureAccessTenant.Tests.ps1 │ ├── Get-EntraBetaGlobalSecureAccessTenantStatus.Tests.ps1 │ ├── Get-EntraBetaPrivateAccessApplication.Tests.ps1 │ ├── Get-EntraBetaPrivateAccessApplicationSegment.Tests.ps1 │ ├── New-EntraBetaPrivateAccessApplication.Tests.ps1 │ ├── New-EntraBetaPrivateAccessApplicationSegment.Tests.ps1 │ └── Remove-EntraBetaPrivateAccessApplicationSegment.Tests.ps1 │ ├── Reports │ ├── Get-EntraBetaApplicationSignInDetailedSummary.Tests.ps1 │ ├── Get-EntraBetaApplicationSignInSummary.Tests.ps1 │ ├── Get-EntraBetaAuditDirectoryLog.Tests.ps1 │ ├── Get-EntraBetaAuditSignInLog.Tests.ps1 │ ├── Get-EntraBetaAuthenticationMethodUserRegistrationDetailReport.Tests.ps1 │ └── Get-EntraBetaCrossTenantAccessActivity.Tests.ps1 │ ├── SignIns │ ├── Add-EntraBetaFeatureRolloutPolicyDirectoryObject.Tests.ps1 │ ├── Add-EntraBetaServicePrincipalPolicy.Tests.ps1 │ ├── Get-EntraBetaFeatureRolloutPolicy.Tests.ps1 │ ├── Get-EntraBetaPermissionGrantPolicy.Tests.ps1 │ ├── Get-EntraBetaPolicy.Tests.ps1 │ ├── Get-EntraBetaPolicyAppliedObject.Tests.ps1 │ ├── Get-EntraBetaServicePrincipalPolicy.Tests.ps1 │ ├── Get-EntraBetaUserAuthenticationMethod.Tests.ps1 │ ├── Get-EntraBetaUserAuthenticationRequirement.Tests.ps1 │ ├── New-EntraBetaFeatureRolloutPolicy.Tests.ps1 │ ├── New-EntraBetaInvitation.Tests.ps1 │ ├── New-EntraBetaOauth2PermissionGrant.Tests.ps1 │ ├── Remove-EntraBetaFeatureRolloutPolicy.Tests.ps1 │ ├── Remove-EntraBetaFeatureRolloutPolicyDirectoryObject.Tests.ps1 │ ├── Remove-EntraBetaPolicy.Tests.ps1 │ ├── Remove-EntraBetaServicePrincipalPolicy.Tests.ps1 │ ├── Remove-EntraBetaTrustFrameworkPolicy.Tests.ps1 │ ├── Reset-EntraBetaStrongAuthenticationMethodByUpn.Tests.ps1 │ ├── Set-EntraBetaFeatureRolloutPolicy.Tests.ps1 │ ├── Set-EntraBetaPolicy.Tests.ps1 │ └── Update-EntraBetaUserAuthenticationRequirement.Tests.ps1 │ └── Users │ ├── Get-EntraBetaDeletedUser.Tests.ps1 │ ├── Get-EntraBetaInactiveSignInUser.Tests.ps1 │ ├── Get-EntraBetaUser.Tests.ps1 │ ├── Get-EntraBetaUserAdministrativeUnit.Tests.ps1 │ ├── Get-EntraBetaUserExtension.Tests.ps1 │ ├── Get-EntraBetaUserGroup.Tests.ps1 │ ├── Get-EntraBetaUserInactiveSignIn.Tests.ps1 │ ├── Get-EntraBetaUserLicenseDetail.Tests.ps1 │ ├── Get-EntraBetaUserManager.Tests.ps1 │ ├── Get-EntraBetaUserMembership.Tests.ps1 │ ├── Get-EntraBetaUserOwnedDevice.Tests.ps1 │ ├── Get-EntraBetaUserRegisteredDevice.Tests.ps1 │ ├── Get-EntraBetaUserRole.Tests.ps1 │ ├── Get-EntraBetaUserSponsor.Tests.ps1 │ ├── New-EntraBetaUser.Tests.ps1 │ ├── Remove-EntraBetaUser.Tests.ps1 │ ├── Remove-EntraBetaUserExtension.Tests.ps1 │ ├── Remove-EntraBetaUserManager.Tests.ps1 │ ├── Remove-EntraBetaUserSponsor.Tests.ps1 │ ├── Set-EntraBetaSignedInUserPassword.Tests.ps1 │ ├── Set-EntraBetaUser.Tests.ps1 │ ├── Set-EntraBetaUserExtension.Tests.ps1 │ ├── Set-EntraBetaUserManager.Tests.ps1 │ ├── Set-EntraBetaUserPasswordProfile.Tests.ps1 │ ├── Set-EntraBetaUserSponsor.Tests.ps1 │ └── Update-EntraBetaUserFromFederated.Tests.ps1 └── test_legacy ├── Customizations.Test.ps1 └── module ├── Common-Functions.ps1 ├── Entra ├── Add-EntraAdministrativeUnitMember.Tests.ps1 ├── Add-EntraApplicationOwner.Tests.ps1 ├── Add-EntraCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 ├── Add-EntraDeviceRegisteredOwner.Tests.ps1 ├── Add-EntraDeviceRegisteredUser.Tests.ps1 ├── Add-EntraDirectoryRoleMember.Tests.ps1 ├── Add-EntraGroupMember.Tests.ps1 ├── Add-EntraGroupOwner.Tests.ps1 ├── Add-EntraLifecyclePolicyGroup.Tests.ps1 ├── Add-EntraScopedRoleMembership.Tests.ps1 ├── Add-EntraServicePrincipalDelegatedPermissionClassification.Tests.ps1 ├── Add-EntraServicePrincipalOwner.Tests.ps1 ├── AddtionalFunctions.Tests.ps1 ├── Common-Parameter.Tests.ps1 ├── Connect-Entra.Tests.ps1 ├── Customizations.Tests.ps1 ├── Disconnect-Entra.Tests.ps1 ├── Enable-EntraDirectoryRole.Tests.ps1 ├── Entra.Tests.ps1 ├── EntraCmdletsMap.ps1 ├── General.Tests.ps1 ├── Get-EntraAccountSku.Tests.ps1 ├── Get-EntraAdministrativeUnit.Tests.ps1 ├── Get-EntraAdministrativeUnitMember.Tests.ps1 ├── Get-EntraApplication.Tests.ps1 ├── Get-EntraApplicationExtensionProperty.Tests.ps1 ├── Get-EntraApplicationKeyCredential.Tests.ps1 ├── Get-EntraApplicationLogo.Tests.ps1 ├── Get-EntraApplicationModule.Tests.ps1 ├── Get-EntraApplicationOwner.Tests.ps1 ├── Get-EntraApplicationPasswordCredential.Tests.ps1 ├── Get-EntraApplicationTemplate.Tests.ps1 ├── Get-EntraAttributeSet.Tests.ps1 ├── Get-EntraAuditDirectoryLog.Tests.ps1 ├── Get-EntraAuditSignInLog.Tests.ps1 ├── Get-EntraAuthorizationPolicy.Tests.ps1 ├── Get-EntraConditionalAccessPolicy.Tests.ps1 ├── Get-EntraContact.Tests.ps1 ├── Get-EntraContactMembership.Tests.ps1 ├── Get-EntraCustomSecurityAttributeDefinition.Tests.ps1 ├── Get-EntraCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 ├── Get-EntraDeletedApplication.Tests.ps1 ├── Get-EntraDeletedDirectoryObject.Tests.ps1 ├── Get-EntraDeletedGroup.Tests.ps1 ├── Get-EntraDevice.Tests.ps1 ├── Get-EntraDeviceRegisteredOwner.Tests.ps1 ├── Get-EntraDeviceRegisteredUser.Tests.ps1 ├── Get-EntraDirSyncConfiguration.Tests.ps1 ├── Get-EntraDirSyncFeatures.Tests.ps1 ├── Get-EntraDirectoryObjectOnPremisesProvisioningError.Tests.ps1 ├── Get-EntraDirectoryRole.Tests.ps1 ├── Get-EntraDirectoryRoleAssignment.Tests.ps1 ├── Get-EntraDirectoryRoleDefinition.Tests.ps1 ├── Get-EntraDirectoryRoleMember.Tests.ps1 ├── Get-EntraDirectoryRoleTemplate.Tests.ps1 ├── Get-EntraDomain.Tests.ps1 ├── Get-EntraDomainFederationSettings.Tests.ps1 ├── Get-EntraDomainNameReference.Tests.ps1 ├── Get-EntraDomainServiceConfigurationRecord.Tests.ps1 ├── Get-EntraDomainVerificationDnsRecord.Tests.ps1 ├── Get-EntraFeatureRolloutPolicy.Tests.ps1 ├── Get-EntraFederationProperty.Tests.ps1 ├── Get-EntraGroup.Tests.ps1 ├── Get-EntraGroupAppRoleAssignment.Tests.ps1 ├── Get-EntraGroupLifecyclePolicy.Tests.ps1 ├── Get-EntraGroupMember.Tests.ps1 ├── Get-EntraGroupOwner.Tests.ps1 ├── Get-EntraIdentityProvider.Tests.ps1 ├── Get-EntraLifecyclePolicyGroup.Tests.ps1 ├── Get-EntraOAuth2PermissionGrant.Tests.ps1 ├── Get-EntraObjectByObjectId.Tests.ps1 ├── Get-EntraObjectSetting.Tests.ps1 ├── Get-EntraPasswordPolicy.Tests.ps1 ├── Get-EntraPermissionGrantConditionSet.Tests.ps1 ├── Get-EntraPermissionGrantPolicy.Tests.ps1 ├── Get-EntraPolicy.Tests.ps1 ├── Get-EntraScopedRoleMembership.Tests.ps1 ├── Get-EntraServicePrincipal.Tests.ps1 ├── Get-EntraServicePrincipalAppRoleAssignedTo.Tests.ps1 ├── Get-EntraServicePrincipalAppRoleAssignment.Tests.ps1 ├── Get-EntraServicePrincipalDelegatedPermissionClassification.Tests.ps1 ├── Get-EntraServicePrincipalKeyCredential.Tests.ps1 ├── Get-EntraServicePrincipalMembership.Tests.ps1 ├── Get-EntraServicePrincipalOAuth2PermissionGrant.tests.ps1 ├── Get-EntraServicePrincipalOwnedObject.Tests.ps1 ├── Get-EntraServicePrincipalOwner.Tests.ps1 ├── Get-EntraServicePrincipalPasswordCredential.Tests.ps1 ├── Get-EntraSubscribedSku.Tests.ps1 ├── Get-EntraTenantDetail.Tests.ps1 ├── Get-EntraTrustedCertificateAuthority.Tests.ps1 ├── Get-EntraUser.Tests.ps1 ├── Get-EntraUserAppRoleAssignment.Tests.ps1 ├── Get-EntraUserAuthenticationMethod.Tests.ps1 ├── Get-EntraUserCreatedObject.Tests.ps1 ├── Get-EntraUserDirectReport.Tests.ps1 ├── Get-EntraUserExtension.Tests.ps1 ├── Get-EntraUserLicenseDetail.Tests.ps1 ├── Get-EntraUserManager.Tests.ps1 ├── Get-EntraUserMembership.Tests.ps1 ├── Get-EntraUserOAuth2PermissionGrant.Tests.ps1 ├── Get-EntraUserOwnedDevice.Tests.ps1 ├── Get-EntraUserOwnedObject.Tests.ps1 ├── Get-EntraUserRegisteredDevice.Tests.ps1 ├── Invalid.Tests.ps1 ├── Module.Tests.ps1 ├── New-EntraAdministrativeUnit.Tests.ps1 ├── New-EntraApplication.Tests.ps1 ├── New-EntraApplicationExtensionProperty.Tests.ps1 ├── New-EntraApplicationFromApplicationTemplate.Tests.ps1 ├── New-EntraApplicationPassword.Tests.ps1 ├── New-EntraApplicationPasswordCredential.Tests.ps1 ├── New-EntraAttributeSet.Tests.ps1 ├── New-EntraConditionalAccessPolicy.Tests.ps1 ├── New-EntraCustomSecurityAttributeDefinition.Tests.ps1 ├── New-EntraDirectoryRoleAssignment.Tests.ps1 ├── New-EntraDirectoryRoleDefinition.Tests.ps1 ├── New-EntraDomain.Tests.ps1 ├── New-EntraFeatureRolloutPolicy.Tests.ps1 ├── New-EntraGroup.Tests.ps1 ├── New-EntraGroupAppRoleAssignment.Tests.ps1 ├── New-EntraGroupLifecyclePolicy.Tests.ps1 ├── New-EntraIdentityProvider.Tests.ps1 ├── New-EntraInvitation.Tests.ps1 ├── New-EntraNamedLocationPolicy.Tests.ps1 ├── New-EntraOauth2PermissionGrant.Tests.ps1 ├── New-EntraPermissionGrantConditionSet.Tests.ps1 ├── New-EntraPermissionGrantPolicy.Tests.ps1 ├── New-EntraPolicy.Tests.ps1 ├── New-EntraServicePrincipal.Tests.ps1 ├── New-EntraServicePrincipalAppRoleAssignment.Tests.ps1 ├── New-EntraServicePrincipalPasswordCredential.Tests.ps1 ├── New-EntraTrustedCertificateAuthority.Tests.ps1 ├── New-EntraUser.Tests.ps1 ├── New-EntraUserAppRoleAssignment.Tests.ps1 ├── Remove-EntraAdministrativeUnit.Tests.ps1 ├── Remove-EntraAdministrativeUnitMember.Tests.ps1 ├── Remove-EntraApplication.Tests.ps1 ├── Remove-EntraApplicationExtensionProperty.Tests.ps1 ├── Remove-EntraApplicationOwner.Tests.ps1 ├── Remove-EntraApplicationPassword.Tests.ps1 ├── Remove-EntraApplicationPasswordCredential.Tests.ps1 ├── Remove-EntraDeletedApplication.Tests.ps1 ├── Remove-EntraDeletedDirectoryObject.Tests.ps1 ├── Remove-EntraDevice.Tests.ps1 ├── Remove-EntraDeviceRegisteredOwner.Tests.ps1 ├── Remove-EntraDeviceRegisteredUser.Tests.ps1 ├── Remove-EntraDirectoryRoleAssignment.Tests.ps1 ├── Remove-EntraDirectoryRoleDefinition.Tests.ps1 ├── Remove-EntraDirectoryRoleMember.Tests.ps1 ├── Remove-EntraDomain.Tests.ps1 ├── Remove-EntraFeatureRolloutPolicy.Tests.ps1 ├── Remove-EntraFeatureRolloutPolicyDirectoryObject.Tests.ps1 ├── Remove-EntraGroup.Tests.ps1 ├── Remove-EntraGroupAppRoleAssignment.Tests.ps1 ├── Remove-EntraGroupLifecyclePolicy.Tests.ps1 ├── Remove-EntraGroupMember.Tests.ps1 ├── Remove-EntraGroupOwner.Tests.ps1 ├── Remove-EntraIdentityProvider.Tests.ps1 ├── Remove-EntraLifecyclePolicyGroup.Tests.ps1 ├── Remove-EntraNamedLocationPolicy.Tests.ps1 ├── Remove-EntraOAuth2PermissionGrant.Tests.ps1 ├── Remove-EntraPermissionGrantConditionSet.Tests.ps1 ├── Remove-EntraPermissionGrantPolicy.Tests.ps1 ├── Remove-EntraPolicy.Tests.ps1 ├── Remove-EntraScopedRoleMembership.Tests.ps1 ├── Remove-EntraServicePrincipal.Tests.ps1 ├── Remove-EntraServicePrincipalAppRoleAssignment.Tests.ps1 ├── Remove-EntraServicePrincipalDelegatedPermissionClassification.Tests.ps1 ├── Remove-EntraServicePrincipalOwner.Tests.ps1 ├── Remove-EntraServicePrincipalPasswordCredential.Tests.ps1 ├── Remove-EntraTrustedCertificateAuthority.Tests.ps1 ├── Remove-EntraUser.Tests.ps1 ├── Remove-EntraUserAppRoleAssignment.Tests.ps1 ├── Remove-EntraUserManager.Tests.ps1 ├── Reset-EntraLifeCycleGroup.Tests.ps1 ├── Reset-EntraStrongAuthenticationMethodByUpn.Tests.ps1 ├── Restore-EntraDeletedApplication.Tests.ps1 ├── Restore-EntraDeletedDirectoryObject.Tests.ps1 ├── Revoke-EntraSignedInUserAllRefreshToken.Tests.ps1 ├── Revoke-EntraUserAllRefreshToken.Tests.ps1 ├── Select-EntraGroupIdsContactIsMemberOf.Tests.ps1 ├── Select-EntraGroupIdsGroupIsMemberOf.Tests.ps1 ├── Select-EntraGroupIdsServicePrincipalIsMemberOf.Tests.ps1 ├── Select-EntraGroupIdsUserIsMemberOf.Tests.ps1 ├── Set-EntraAdministrativeUnit.Tests.ps1 ├── Set-EntraApplication.Tests.ps1 ├── Set-EntraApplicationLogo.Tests.ps1 ├── Set-EntraAttributeSet.Tests.ps1 ├── Set-EntraAuthorizationPolicy.Tests.ps1 ├── Set-EntraConditionalAccessPolicy.Tests.ps1 ├── Set-EntraCustomSecurityAttributeDefinition.Tests.ps1 ├── Set-EntraCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 ├── Set-EntraDevice.Tests.ps1 ├── Set-EntraDirSyncConfiguration.Tests.ps1 ├── Set-EntraDirSyncEnabled.Tests.ps1 ├── Set-EntraDirSyncFeature.Tests.ps1 ├── Set-EntraDirectoryRoleDefinition.Tests.ps1 ├── Set-EntraDomain.Tests.ps1 ├── Set-EntraDomainFederationSettings.Tests.ps1 ├── Set-EntraFeatureRolloutPolicy.Tests.ps1 ├── Set-EntraGroup.Tests.ps1 ├── Set-EntraGroupLifecyclePolicy.Tests.ps1 ├── Set-EntraNamedLocationPolicy.Tests.ps1 ├── Set-EntraPartnerInformation.Tests.ps1 ├── Set-EntraPermissionGrantConditionSet.Tests.ps1 ├── Set-EntraPermissionGrantPolicy.Tests.ps1 ├── Set-EntraPolicy.Tests.ps1 ├── Set-EntraServicePrincipal.Tests.ps1 ├── Set-EntraTenantDetail.Tests.ps1 ├── Set-EntraTrustedCertificateAuthority.Tests.ps1 ├── Set-EntraUser.Tests.ps1 ├── Set-EntraUserLicense.Tests.ps1 ├── Set-EntraUserManager.Tests.ps1 ├── Set-EntraUserPassword.Tests.ps1 ├── Set-EntraUserThumbnailPhoto.Tests.ps1 ├── Update-EntraOauth2PermissionGrant.Tests.ps1 ├── Update-EntraSignedInUserPassword.Tests.ps1 ├── Update-EntraUserFromFederated.Tests.ps1 └── Valid.Tests.ps1 └── EntraBeta ├── Add-EntraBetaAdministrativeUnitMember.Tests.ps1 ├── Add-EntraBetaApplicationPolicy.Tests.ps1 ├── Add-EntraBetaDeviceRegisteredOwner.Tests.ps1 ├── Add-EntraBetaDeviceRegisteredUser.Tests.ps1 ├── Add-EntraBetaFeatureRolloutPolicyDirectoryObject.Tests.ps1 ├── Add-EntraBetaGroupMember.Tests.ps1 ├── Add-EntraBetaGroupOwner.Tests.ps1 ├── Add-EntraBetaScopedRoleMembership.Tests.ps1 ├── Add-EntraBetaServicePrincipalPolicy.Tests.ps1 ├── Add-EntraBetacustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 ├── AddtionalFunctions.Tests.ps1 ├── Confirm-EntraBetaDomain.Tests.ps1 ├── Customizations.Tests.ps1 ├── EntraBeta.Tests.ps1 ├── General.Tests.ps1 ├── Get-EntraBetaAccountSku.Tests.ps1 ├── Get-EntraBetaAdministrativeUnit.Tests.ps1 ├── Get-EntraBetaAdministrativeUnitMember.Tests.ps1 ├── Get-EntraBetaApplication.Tests.ps1 ├── Get-EntraBetaApplicationLogo.Tests.ps1 ├── Get-EntraBetaApplicationPasswordCredential.Tests.ps1 ├── Get-EntraBetaApplicationPolicy.Tests.ps1 ├── Get-EntraBetaApplicationSignInDetailedSummary.Tests.ps1 ├── Get-EntraBetaApplicationSignInSummary.Tests.ps1 ├── Get-EntraBetaApplicationTemplate.Tests.ps1 ├── Get-EntraBetaAttributeSet.Tests.ps1 ├── Get-EntraBetaAuditDirectoryLog.Tests.ps1 ├── Get-EntraBetaAuditSignInLog.Tests.ps1 ├── Get-EntraBetaCustomSecurityAttributeDefinition.Tests.ps1 ├── Get-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 ├── Get-EntraBetaDeletedGroup.Tests.ps1 ├── Get-EntraBetaDevice.Tests.ps1 ├── Get-EntraBetaDeviceRegisteredOwner.Tests.ps1 ├── Get-EntraBetaDeviceRegisteredUser.Tests.ps1 ├── Get-EntraBetaDirSyncConfiguration.Tests.ps1 ├── Get-EntraBetaDirSyncFeature.Tests.ps1 ├── Get-EntraBetaDirectoryObjectOnPremisesProvisioningError.Tests.ps1 ├── Get-EntraBetaDirectorySetting.Tests.ps1 ├── Get-EntraBetaDirectorySettingTemplate.Tests.ps1 ├── Get-EntraBetaDomainFederationSettings.Tests.ps1 ├── Get-EntraBetaFeatureRolloutPolicy.Tests.ps1 ├── Get-EntraBetaFederationProperty.Tests.ps1 ├── Get-EntraBetaGroup.Tests.ps1 ├── Get-EntraBetaGroupAppRoleAssignment.Tests.ps1 ├── Get-EntraBetaGroupLifecyclePolicy.Tests.ps1 ├── Get-EntraBetaGroupMember.Tests.ps1 ├── Get-EntraBetaGroupOwner.Tests.ps1 ├── Get-EntraBetaObjectSetting.Tests.ps1 ├── Get-EntraBetaPasswordPolicy.Tests.ps1 ├── Get-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 ├── Get-EntraBetaPermissionGrantPolicy.Tests.ps1 ├── Get-EntraBetaPolicy.Tests.ps1 ├── Get-EntraBetaPolicyAppliedObject.Tests.ps1 ├── Get-EntraBetaPrivilegedResource.Tests.ps1 ├── Get-EntraBetaPrivilegedRoleDefinition.Tests.ps1 ├── Get-EntraBetaPrivilegedRoleSetting.Tests.ps1 ├── Get-EntraBetaScopedRoleMembership.Tests.ps1 ├── Get-EntraBetaServicePrincipal.Tests.ps1 ├── Get-EntraBetaServicePrincipalOwnedObject.Tests.ps1 ├── Get-EntraBetaServicePrincipalPolicy.Tests.ps1 ├── Get-EntraBetaUser.Tests.ps1 ├── Get-EntraBetaUserAuthenticationMethod.Tests.ps1 ├── Get-EntraBetaUserAuthenticationRequirement.Tests.ps1 ├── Get-EntraBetaUserExtension.Tests.ps1 ├── Get-EntraBetaUserLicenseDetail.Tests.ps1 ├── Get-EntraBetaUserManager.Tests.ps1 ├── Get-EntraBetaUserMembership.Tests.ps1 ├── Get-EntraBetaUserOwnedDevice.Tests.ps1 ├── Get-EntraBetaUserRegisteredDevice.Tests.ps1 ├── New-EntraBetaAdministrativeUnit.Tests.ps1 ├── New-EntraBetaAdministrativeUnitMember.Tests.ps1 ├── New-EntraBetaApplication.Tests.ps1 ├── New-EntraBetaAttributeSet.Tests.ps1 ├── New-EntraBetaCustomSecurityAttributeDefinition.Tests.ps1 ├── New-EntraBetaDirectorySetting.Tests.ps1 ├── New-EntraBetaFeatureRolloutPolicy.Tests.ps1 ├── New-EntraBetaGroup.Tests.ps1 ├── New-EntraBetaGroupAppRoleAssignment.Tests.ps1 ├── New-EntraBetaOauth2PermissionGrant.Tests.ps1 ├── New-EntraBetaObjectSetting.Tests.ps1 ├── New-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 ├── New-EntraBetaUser.Tests.ps1 ├── Remove-EntraBetaAdministrativeUnit.Tests.ps1 ├── Remove-EntraBetaAdministrativeUnitMember.Tests.ps1 ├── Remove-EntraBetaApplication.Tests.ps1 ├── Remove-EntraBetaApplicationPolicy.Tests.ps1 ├── Remove-EntraBetaDevice.Tests.ps1 ├── Remove-EntraBetaDeviceRegisteredOwner.Tests.ps1 ├── Remove-EntraBetaDeviceRegisteredUser.Tests.ps1 ├── Remove-EntraBetaDirectorySetting.Tests.ps1 ├── Remove-EntraBetaFeatureRolloutPolicy.Tests.ps1 ├── Remove-EntraBetaFeatureRolloutPolicyDirectoryObject.Tests.ps1 ├── Remove-EntraBetaGroup.Tests.ps1 ├── Remove-EntraBetaGroupAppRoleAssignment.Tests.ps1 ├── Remove-EntraBetaGroupLifecyclePolicy.Tests.ps1 ├── Remove-EntraBetaGroupMember.Tests.ps1 ├── Remove-EntraBetaGroupOwner.Tests.ps1 ├── Remove-EntraBetaObjectSetting.Tests.ps1 ├── Remove-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 ├── Remove-EntraBetaPolicy.Tests.ps1 ├── Remove-EntraBetaScopedRoleMembership.Tests.ps1 ├── Remove-EntraBetaServicePrincipalPolicy.Tests.ps1 ├── Remove-EntraBetaTrustFrameworkPolicy.Tests.ps1 ├── Remove-EntraBetaUser.Tests.ps1 ├── Remove-EntraBetaUserManager.Tests.ps1 ├── Reset-EntraBetaStrongAuthenticationMethodByUpn.Tests.ps1 ├── Set-EntraBetaAdministrativeUnit.Tests.ps1 ├── Set-EntraBetaApplication.Tests.ps1 ├── Set-EntraBetaApplicationLogo.Tests.ps1 ├── Set-EntraBetaAttributeSet.Tests.ps1 ├── Set-EntraBetaCustomSecurityAttributeDefinition.Tests.ps1 ├── Set-EntraBetaCustomSecurityAttributeDefinitionAllowedValue.Tests.ps1 ├── Set-EntraBetaDevice.Tests.ps1 ├── Set-EntraBetaDirSyncConfiguration.Tests.ps1 ├── Set-EntraBetaDirSyncEnabled.Tests.ps1 ├── Set-EntraBetaDirSyncFeature.Tests.ps1 ├── Set-EntraBetaDirectorySetting.Tests.ps1 ├── Set-EntraBetaDomainFederationSettings.Tests.ps1 ├── Set-EntraBetaFeatureRolloutPolicy.Tests.ps1 ├── Set-EntraBetaGroup.Tests.ps1 ├── Set-EntraBetaGroupLifecyclePolicy.Tests.ps1 ├── Set-EntraBetaObjectSetting.Tests.ps1 ├── Set-EntraBetaPartnerInformation.Tests.ps1 ├── Set-EntraBetaPasswordSingleSignOnCredential.Tests.ps1 ├── Set-EntraBetaPolicy.Tests.ps1 ├── Set-EntraBetaPrivilegedRoleSetting.Tests.ps1 ├── Set-EntraBetaServicePrincipal.Tests.ps1 ├── Set-EntraBetaUser.Tests.ps1 ├── Set-EntraBetaUserManager.Tests.ps1 ├── Update-EntraBetaOauth2PermissionGrant.Tests.ps1 ├── Update-EntraBetaSignedInUserPassword.Tests.ps1 ├── Update-EntraBetaUserAuthenticationRequirement.Tests.ps1 └── Update-EntraBetaUserFromFederated.Tests.ps1 /.azure-pipelines/1es-entra-powershell-ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/1es-entra-powershell-ci-build.yml -------------------------------------------------------------------------------- /.azure-pipelines/1es-entra-powershell-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/1es-entra-powershell-pr.yml -------------------------------------------------------------------------------- /.azure-pipelines/1es-entra-powershell-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/1es-entra-powershell-release.yml -------------------------------------------------------------------------------- /.azure-pipelines/common-templates/esrp/codesign-nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/common-templates/esrp/codesign-nuget.yml -------------------------------------------------------------------------------- /.azure-pipelines/common-templates/esrp/codesign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/common-templates/esrp/codesign.yml -------------------------------------------------------------------------------- /.azure-pipelines/common-templates/install-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/common-templates/install-tools.yml -------------------------------------------------------------------------------- /.azure-pipelines/common-templates/security-post-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/common-templates/security-post-checks.yml -------------------------------------------------------------------------------- /.azure-pipelines/common-templates/security-pre-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/common-templates/security-pre-checks.yml -------------------------------------------------------------------------------- /.azure-pipelines/generation-templates/generate_adapter-1es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/generation-templates/generate_adapter-1es.yml -------------------------------------------------------------------------------- /.azure-pipelines/generation-templates/generate_adapter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/generation-templates/generate_adapter.yml -------------------------------------------------------------------------------- /.azure-pipelines/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/integration-tests.yml -------------------------------------------------------------------------------- /.azure-pipelines/pull-request-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.azure-pipelines/pull-request-template.yml -------------------------------------------------------------------------------- /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.config/CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.config/CredScanSuppressions.json -------------------------------------------------------------------------------- /.config/guardian/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.config/guardian/.gdnbaselines -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/entra-powershell-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.github/ISSUE_TEMPLATE/entra-powershell-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /.openpublishing.publish.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/.openpublishing.publish.config.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GET-STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/GET-STARTED.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /MOTIVATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/MOTIVATION.md -------------------------------------------------------------------------------- /PREREQUISITE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/PREREQUISITE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/ThirdPartyNotices.md -------------------------------------------------------------------------------- /assets/aadconsentgrantpermissiontable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/assets/aadconsentgrantpermissiontable.csv -------------------------------------------------------------------------------- /cabgen-bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/cabgen-bootstrap.yml -------------------------------------------------------------------------------- /development-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/development-docs/README.md -------------------------------------------------------------------------------- /development-docs/design-guidelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/development-docs/design-guidelines/README.md -------------------------------------------------------------------------------- /development-docs/design-guidelines/cleaning-up-commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/development-docs/design-guidelines/cleaning-up-commits.md -------------------------------------------------------------------------------- /development-docs/design-guidelines/cmdlet-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/development-docs/design-guidelines/cmdlet-best-practices.md -------------------------------------------------------------------------------- /development-docs/design-guidelines/parameter-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/development-docs/design-guidelines/parameter-best-practices.md -------------------------------------------------------------------------------- /development-docs/design-guidelines/piping-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/development-docs/design-guidelines/piping-best-practices.md -------------------------------------------------------------------------------- /misc/acknowledgements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/misc/acknowledgements -------------------------------------------------------------------------------- /module/.sourcemap-maml-0.json: -------------------------------------------------------------------------------- 1 | {"files":{}} -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Applications/Get-EntraApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Applications/Get-EntraApplication.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Applications/New-EntraApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Applications/New-EntraApplication.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Applications/New-EntraCustomHeaders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Applications/New-EntraCustomHeaders.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Applications/Set-EntraApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Applications/Set-EntraApplication.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Authentication/Add-EntraEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Authentication/Add-EntraEnvironment.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Authentication/Connect-Entra.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Authentication/Connect-Entra.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Authentication/Disconnect-Entra.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Authentication/Disconnect-Entra.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Authentication/Find-EntraPermission.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Authentication/Find-EntraPermission.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Authentication/Get-EntraContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Authentication/Get-EntraContext.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Authentication/Get-EntraEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Authentication/Get-EntraEnvironment.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/DirectoryManagement/Get-EntraDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/DirectoryManagement/Get-EntraDevice.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/DirectoryManagement/Get-EntraDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/DirectoryManagement/Get-EntraDomain.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Enable-EntraAzureADAlias.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Enable-EntraAzureADAlias.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Get-EntraUnsupportedCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Get-EntraUnsupportedCommand.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Add-EntraGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Add-EntraGroupMember.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Add-EntraGroupOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Add-EntraGroupOwner.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Get-EntraDeletedGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Get-EntraDeletedGroup.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Get-EntraGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Get-EntraGroup.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Get-EntraGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Get-EntraGroupMember.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Get-EntraGroupOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Get-EntraGroupOwner.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Get-EntraObjectSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Get-EntraObjectSetting.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/New-EntraCustomHeaders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/New-EntraCustomHeaders.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/New-EntraGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/New-EntraGroup.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Remove-EntraGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Remove-EntraGroup.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Remove-EntraGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Remove-EntraGroupMember.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Remove-EntraGroupOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Remove-EntraGroupOwner.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Reset-EntraLifeCycleGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Reset-EntraLifeCycleGroup.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Groups/Set-EntraGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Groups/Set-EntraGroup.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Reports/Get-EntraAuditSignInLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Reports/Get-EntraAuditSignInLog.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Reports/New-EntraCustomHeaders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Reports/New-EntraCustomHeaders.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/SignIns/Get-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/SignIns/Get-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/SignIns/New-EntraCustomHeaders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/SignIns/New-EntraCustomHeaders.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/SignIns/New-EntraInvitation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/SignIns/New-EntraInvitation.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/SignIns/New-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/SignIns/New-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/SignIns/Remove-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/SignIns/Remove-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/SignIns/Set-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/SignIns/Set-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Test-EntraScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Test-EntraScript.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/UnMappedAliases.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/UnMappedAliases.psd1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraDeletedUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraDeletedUser.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUser.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserCreatedObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserCreatedObject.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserDirectReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserDirectReport.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserExtension.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserGroup.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserLicenseDetail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserLicenseDetail.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserManager.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserMembership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserMembership.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserOwnedDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserOwnedDevice.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserOwnedObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserOwnedObject.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserRole.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Get-EntraUserSponsor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Get-EntraUserSponsor.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/New-EntraCustomHeaders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/New-EntraCustomHeaders.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/New-EntraUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/New-EntraUser.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Remove-EntraUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Remove-EntraUser.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Remove-EntraUserExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Remove-EntraUserExtension.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Remove-EntraUserManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Remove-EntraUserManager.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Remove-EntraUserSponsor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Remove-EntraUserSponsor.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Set-EntraUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Set-EntraUser.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Set-EntraUserExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Set-EntraUserExtension.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Set-EntraUserLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Set-EntraUserLicense.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Set-EntraUserManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Set-EntraUserManager.ps1 -------------------------------------------------------------------------------- /module/Entra/Microsoft.Entra/Users/Set-EntraUserSponsor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/Microsoft.Entra/Users/Set-EntraUserSponsor.ps1 -------------------------------------------------------------------------------- /module/Entra/UnMappedFiles/New-EntraCustomHeaders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/UnMappedFiles/New-EntraCustomHeaders.ps1 -------------------------------------------------------------------------------- /module/Entra/UnMappedFiles/Test-EntraScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/UnMappedFiles/Test-EntraScript.ps1 -------------------------------------------------------------------------------- /module/Entra/config/ModuleMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/config/ModuleMetadata.json -------------------------------------------------------------------------------- /module/Entra/config/ModuleSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/config/ModuleSettings.json -------------------------------------------------------------------------------- /module/Entra/config/dependencyMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/config/dependencyMapping.json -------------------------------------------------------------------------------- /module/Entra/config/moduleMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/Entra/config/moduleMapping.json -------------------------------------------------------------------------------- /module/EntraBeta/Microsoft.Entra.Beta/Test-EntraScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/Microsoft.Entra.Beta/Test-EntraScript.ps1 -------------------------------------------------------------------------------- /module/EntraBeta/Microsoft.Entra.Beta/Users/Get-EntraBetaUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/Microsoft.Entra.Beta/Users/Get-EntraBetaUser.ps1 -------------------------------------------------------------------------------- /module/EntraBeta/Microsoft.Entra.Beta/Users/New-EntraBetaUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/Microsoft.Entra.Beta/Users/New-EntraBetaUser.ps1 -------------------------------------------------------------------------------- /module/EntraBeta/Microsoft.Entra.Beta/Users/Set-EntraBetaUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/Microsoft.Entra.Beta/Users/Set-EntraBetaUser.ps1 -------------------------------------------------------------------------------- /module/EntraBeta/UnMappedFiles/New-EntraBetaCustomHeaders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/UnMappedFiles/New-EntraBetaCustomHeaders.ps1 -------------------------------------------------------------------------------- /module/EntraBeta/UnMappedFiles/Test-EntraScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/UnMappedFiles/Test-EntraScript.ps1 -------------------------------------------------------------------------------- /module/EntraBeta/config/ModuleMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/config/ModuleMetadata.json -------------------------------------------------------------------------------- /module/EntraBeta/config/ModuleSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/config/ModuleSettings.json -------------------------------------------------------------------------------- /module/EntraBeta/config/dependencyMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/config/dependencyMapping.json -------------------------------------------------------------------------------- /module/EntraBeta/config/moduleMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/EntraBeta/config/moduleMapping.json -------------------------------------------------------------------------------- /module/breadcrumb/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/breadcrumb/toc.yml -------------------------------------------------------------------------------- /module/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docfx.json -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Authentication/Connect-Entra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Authentication/Connect-Entra.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Enable-EntraAzureADAlias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Enable-EntraAzureADAlias.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Groups/Get-EntraBetaGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Groups/Get-EntraBetaGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Groups/New-EntraBetaGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Groups/New-EntraBetaGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Groups/Remove-EntraBetaGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Groups/Remove-EntraBetaGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Groups/Set-EntraBetaGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Groups/Set-EntraBetaGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/SignIns/Get-EntraBetaPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/SignIns/Get-EntraBetaPolicy.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/SignIns/New-EntraBetaPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/SignIns/New-EntraBetaPolicy.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/SignIns/Set-EntraBetaPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/SignIns/Set-EntraBetaPolicy.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Test-EntraScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Test-EntraScript.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Users/Get-EntraBetaUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Users/Get-EntraBetaUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Users/Get-EntraBetaUserGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Users/Get-EntraBetaUserGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Users/Get-EntraBetaUserRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Users/Get-EntraBetaUserRole.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Users/New-EntraBetaUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Users/New-EntraBetaUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Users/Remove-EntraBetaUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Users/Remove-EntraBetaUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-beta/Users/Set-EntraBetaUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-beta/Users/Set-EntraBetaUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Authentication/Connect-Entra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Authentication/Connect-Entra.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Enable-EntraAzureADAlias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Enable-EntraAzureADAlias.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Add-EntraGroupMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Add-EntraGroupMember.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Add-EntraGroupOwner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Add-EntraGroupOwner.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Get-EntraDeletedGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Get-EntraDeletedGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Get-EntraGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Get-EntraGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Get-EntraGroupMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Get-EntraGroupMember.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Get-EntraGroupOwner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Get-EntraGroupOwner.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/New-EntraGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/New-EntraGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Remove-EntraGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Remove-EntraGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Groups/Set-EntraGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Groups/Set-EntraGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/SignIns/Get-EntraPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/SignIns/Get-EntraPolicy.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/SignIns/New-EntraInvitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/SignIns/New-EntraInvitation.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/SignIns/New-EntraPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/SignIns/New-EntraPolicy.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/SignIns/Remove-EntraPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/SignIns/Remove-EntraPolicy.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/SignIns/Set-EntraPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/SignIns/Set-EntraPolicy.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Test-EntraScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Test-EntraScript.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Get-EntraDeletedUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Get-EntraDeletedUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Get-EntraUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Get-EntraUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Get-EntraUserExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Get-EntraUserExtension.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Get-EntraUserGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Get-EntraUserGroup.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Get-EntraUserManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Get-EntraUserManager.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Get-EntraUserRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Get-EntraUserRole.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Get-EntraUserSponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Get-EntraUserSponsor.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/New-EntraUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/New-EntraUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Remove-EntraUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Remove-EntraUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Set-EntraUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Set-EntraUser.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Set-EntraUserExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Set-EntraUserExtension.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Set-EntraUserLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Set-EntraUserLicense.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Set-EntraUserManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Set-EntraUserManager.md -------------------------------------------------------------------------------- /module/docs/entra-powershell-v1.0/Users/Set-EntraUserSponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/docs/entra-powershell-v1.0/Users/Set-EntraUserSponsor.md -------------------------------------------------------------------------------- /module/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module/mapping/monikerMapping.json -------------------------------------------------------------------------------- /module_legacy/.sourcemap-maml-0.json: -------------------------------------------------------------------------------- 1 | {"files":{}} -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Add-EntraEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Add-EntraEnvironment.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Connect-Entra.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Connect-Entra.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Disconnect-Entra.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Disconnect-Entra.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Find-EntraPermission.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Find-EntraPermission.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Get-EntraAccountSku.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Get-EntraAccountSku.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Get-EntraAttributeSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Get-EntraAttributeSet.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Get-EntraContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Get-EntraContext.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Get-EntraEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Get-EntraEnvironment.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Get-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Get-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/New-EntraAttributeSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/New-EntraAttributeSet.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/New-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/New-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/README.md -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Remove-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Remove-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Set-EntraAttributeSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Set-EntraAttributeSet.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Set-EntraPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Set-EntraPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/AdditionalFunctions/Test-EntraScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/AdditionalFunctions/Test-EntraScript.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/config/ModuleMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/config/ModuleMetadata.json -------------------------------------------------------------------------------- /module_legacy/Entra/config/ModuleSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/config/ModuleSettings.json -------------------------------------------------------------------------------- /module_legacy/Entra/config/dependencyMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/config/dependencyMapping.json -------------------------------------------------------------------------------- /module_legacy/Entra/config/moduleMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/config/moduleMapping.json -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Add-EntraApplicationOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Add-EntraApplicationOwner.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Add-EntraGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Add-EntraGroupMember.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Add-EntraGroupOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Add-EntraGroupOwner.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Confirm-EntraDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Confirm-EntraDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Generic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Generic.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraApplication.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraApplicationLogo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraApplicationLogo.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraApplicationOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraApplicationOwner.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraContact.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraContact.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraContactMembership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraContactMembership.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraDeletedGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraDeletedGroup.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraDevice.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraExtensionProperty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraExtensionProperty.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraGroup.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraGroupMember.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraGroupOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraGroupOwner.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraIdentityProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraIdentityProvider.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraObjectByObjectId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraObjectByObjectId.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraServicePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraServicePrincipal.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraSubscribedSku.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraSubscribedSku.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraTenantDetail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraTenantDetail.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUser.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserCreatedObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserCreatedObject.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserDirectReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserDirectReport.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserExtension.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserLicenseDetail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserLicenseDetail.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserManager.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserMembership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserMembership.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserOwnedDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserOwnedDevice.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Get-EntraUserOwnedObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Get-EntraUserOwnedObject.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/New-EntraApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/New-EntraApplication.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/New-EntraDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/New-EntraDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/New-EntraIdentityProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/New-EntraIdentityProvider.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/New-EntraInvitation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/New-EntraInvitation.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/New-EntraServicePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/New-EntraServicePrincipal.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/New-EntraUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/New-EntraUser.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/README.md -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Remove-EntraDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Remove-EntraDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Remove-EntraGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Remove-EntraGroupMember.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Remove-EntraGroupOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Remove-EntraGroupOwner.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Remove-EntraUserManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Remove-EntraUserManager.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Reset-EntraLifeCycleGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Reset-EntraLifeCycleGroup.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraApplication.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraApplicationLogo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraApplicationLogo.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraDevice.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraIdentityProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraIdentityProvider.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraTenantDetail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraTenantDetail.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraUser.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraUserExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraUserExtension.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraUserLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraUserLicense.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraUserManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraUserManager.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Set-EntraUserPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Set-EntraUserPassword.ps1 -------------------------------------------------------------------------------- /module_legacy/Entra/customizations/Types.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/Entra/customizations/Types.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/AdditionalFunctions/Connect-Entra.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/AdditionalFunctions/Connect-Entra.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/AdditionalFunctions/Disconnect-Entra.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/AdditionalFunctions/Disconnect-Entra.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/AdditionalFunctions/Get-EntraContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/AdditionalFunctions/Get-EntraContext.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/AdditionalFunctions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/AdditionalFunctions/README.md -------------------------------------------------------------------------------- /module_legacy/EntraBeta/AdditionalFunctions/Test-EntraScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/AdditionalFunctions/Test-EntraScript.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/config/ModuleMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/config/ModuleMetadata.json -------------------------------------------------------------------------------- /module_legacy/EntraBeta/config/ModuleSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/config/ModuleSettings.json -------------------------------------------------------------------------------- /module_legacy/EntraBeta/config/dependencyMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/config/dependencyMapping.json -------------------------------------------------------------------------------- /module_legacy/EntraBeta/config/moduleMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/config/moduleMapping.json -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Generic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Generic.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Get-EntraBetaContact.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Get-EntraBetaContact.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Get-EntraBetaDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Get-EntraBetaDevice.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Get-EntraBetaDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Get-EntraBetaDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Get-EntraBetaGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Get-EntraBetaGroup.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Get-EntraBetaPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Get-EntraBetaPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Get-EntraBetaUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Get-EntraBetaUser.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/New-EntraBetaDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/New-EntraBetaDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/New-EntraBetaPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/New-EntraBetaPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/New-EntraBetaUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/New-EntraBetaUser.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Remove-EntraBetaDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Remove-EntraBetaDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Remove-EntraBetaPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Remove-EntraBetaPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Set-EntraBetaDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Set-EntraBetaDevice.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Set-EntraBetaDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Set-EntraBetaDomain.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Set-EntraBetaPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Set-EntraBetaPolicy.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Set-EntraBetaUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Set-EntraBetaUser.ps1 -------------------------------------------------------------------------------- /module_legacy/EntraBeta/customizations/Types.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/EntraBeta/customizations/Types.ps1 -------------------------------------------------------------------------------- /module_legacy/breadcrumb/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/breadcrumb/toc.yml -------------------------------------------------------------------------------- /module_legacy/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/docfx.json -------------------------------------------------------------------------------- /module_legacy/docs/entra-powershell-beta/index.md: -------------------------------------------------------------------------------- 1 | # Welcome to Microsoft.Graph.Entra.Beta -------------------------------------------------------------------------------- /module_legacy/docs/entra-powershell-beta/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/docs/entra-powershell-beta/toc.yml -------------------------------------------------------------------------------- /module_legacy/docs/entra-powershell-v1.0/index.md: -------------------------------------------------------------------------------- 1 | # Welcome to Microsoft.Graph.Entra -------------------------------------------------------------------------------- /module_legacy/docs/entra-powershell-v1.0/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/docs/entra-powershell-v1.0/toc.yml -------------------------------------------------------------------------------- /module_legacy/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/module_legacy/mapping/monikerMapping.json -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/batch/Invoke-BatchWithRetry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/batch/Invoke-BatchWithRetry.ps1 -------------------------------------------------------------------------------- /samples/create-custom-app-with-application-permissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/create-custom-app-with-application-permissions.ps1 -------------------------------------------------------------------------------- /samples/create-custom-app-with-delegated-permissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/create-custom-app-with-delegated-permissions.ps1 -------------------------------------------------------------------------------- /samples/identify-assignment-policies-without-approval.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/identify-assignment-policies-without-approval.ps1 -------------------------------------------------------------------------------- /samples/migration/export-apps-with-expiring-secrets-modified.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/migration/export-apps-with-expiring-secrets-modified.ps1 -------------------------------------------------------------------------------- /samples/migration/export-apps-with-expiring-secrets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/migration/export-apps-with-expiring-secrets.ps1 -------------------------------------------------------------------------------- /samples/migration/sampleGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/migration/sampleGroups.ps1 -------------------------------------------------------------------------------- /samples/zero-trust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/samples/zero-trust/README.md -------------------------------------------------------------------------------- /src/AzureADPreviewToEntraBetaMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/AzureADPreviewToEntraBetaMapping.json -------------------------------------------------------------------------------- /src/AzureADToEntraMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/AzureADToEntraMapping.json -------------------------------------------------------------------------------- /src/CommandMap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/CommandMap.ps1 -------------------------------------------------------------------------------- /src/CommandTranslation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/CommandTranslation.ps1 -------------------------------------------------------------------------------- /src/CompatibilityAdapter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/CompatibilityAdapter.ps1 -------------------------------------------------------------------------------- /src/CompatibilityAdapterBuilder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/CompatibilityAdapterBuilder.ps1 -------------------------------------------------------------------------------- /src/Create-ModuleMappingFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/Create-ModuleMappingFile.ps1 -------------------------------------------------------------------------------- /src/DataMap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/DataMap.ps1 -------------------------------------------------------------------------------- /src/Entra-ModuleMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/Entra-ModuleMapping.json -------------------------------------------------------------------------------- /src/EntraAliasDefinitions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/EntraAliasDefinitions.ps1 -------------------------------------------------------------------------------- /src/EntraBeta-ModuleMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/EntraBeta-ModuleMapping.json -------------------------------------------------------------------------------- /src/EntraBetaAliasDefinitions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/EntraBetaAliasDefinitions.ps1 -------------------------------------------------------------------------------- /src/EntraModuleBuilder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/EntraModuleBuilder.ps1 -------------------------------------------------------------------------------- /src/EntraModuleSplitter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/EntraModuleSplitter.ps1 -------------------------------------------------------------------------------- /src/Get-MissingCmds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/Get-MissingCmds.ps1 -------------------------------------------------------------------------------- /src/MappedCmdCollection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/MappedCmdCollection.ps1 -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/src/README.md -------------------------------------------------------------------------------- /test/Common-Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Common-Functions.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Add-EntraApplicationOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Add-EntraApplicationOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Add-EntraServicePrincipalOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Add-EntraServicePrincipalOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraApplicationLogo.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraApplicationLogo.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraApplicationModule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraApplicationModule.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraApplicationOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraApplicationOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraApplicationTemplate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraApplicationTemplate.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraDeletedApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraDeletedApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Get-EntraServicePrincipalOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Get-EntraServicePrincipalOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/New-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/New-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/New-EntraApplicationPassword.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/New-EntraApplicationPassword.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/New-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/New-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Remove-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Remove-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Remove-EntraApplicationOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Remove-EntraApplicationOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Remove-EntraApplicationPassword.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Remove-EntraApplicationPassword.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Remove-EntraDeletedApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Remove-EntraDeletedApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Remove-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Remove-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Restore-EntraDeletedApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Restore-EntraDeletedApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Set-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Set-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Set-EntraApplicationLogo.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Set-EntraApplicationLogo.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Set-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Set-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Applications/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Applications/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Authentication/Connect-Entra.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Authentication/Connect-Entra.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Authentication/Disconnect-Entra.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Authentication/Disconnect-Entra.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Authentication/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Authentication/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Authentication/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Authentication/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Authentication/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Authentication/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraAccountSku.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraAccountSku.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraContact.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraContact.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraDeletedDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraDeletedDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraDirSyncFeature.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraDirSyncFeature.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraDirectoryObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraDirectoryObject.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraDirectoryRole.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraDirectoryRole.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraPasswordPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraPasswordPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraSubscribedSku.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraSubscribedSku.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraSubscription.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraSubscription.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Get-EntraTenantDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Get-EntraTenantDetail.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/New-EntraAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/New-EntraAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/New-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/New-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Remove-EntraDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Remove-EntraDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Remove-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Remove-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Resolve-EntraTenant.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Resolve-EntraTenant.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Set-EntraAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Set-EntraAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Set-EntraDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Set-EntraDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Set-EntraDirSyncEnabled.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Set-EntraDirSyncEnabled.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Set-EntraDirSyncFeature.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Set-EntraDirSyncFeature.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Set-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Set-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Set-EntraTenantDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Set-EntraTenantDetail.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/DirectoryManagement/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/DirectoryManagement/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Entra.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Entra.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/EntraCmdletsMap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/EntraCmdletsMap.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/Get-EntraDirectoryRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/Get-EntraDirectoryRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/Get-EntraDirectoryRoleDefinition.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/Get-EntraDirectoryRoleDefinition.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/New-EntraDirectoryRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/New-EntraDirectoryRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/New-EntraDirectoryRoleDefinition.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/New-EntraDirectoryRoleDefinition.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/Set-EntraDirectoryRoleDefinition.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/Set-EntraDirectoryRoleDefinition.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Governance/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Governance/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Add-EntraGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Add-EntraGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Add-EntraGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Add-EntraGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Add-EntraLifecyclePolicyGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Add-EntraLifecyclePolicyGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraDeletedGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraDeletedGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraGroupAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraGroupAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraLifecyclePolicyGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraLifecyclePolicyGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Get-EntraObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Get-EntraObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/New-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/New-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/New-EntraGroupAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/New-EntraGroupAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/New-EntraGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/New-EntraGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Remove-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Remove-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Remove-EntraGroupAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Remove-EntraGroupAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Remove-EntraGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Remove-EntraGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Remove-EntraGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Remove-EntraGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Remove-EntraGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Remove-EntraGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Remove-EntraLifecyclePolicyGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Remove-EntraLifecyclePolicyGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Reset-EntraLifeCycleGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Reset-EntraLifeCycleGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Select-EntraGroupIdsContactIsMemberOf.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Select-EntraGroupIdsContactIsMemberOf.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Select-EntraGroupIdsGroupIsMemberOf.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Select-EntraGroupIdsGroupIsMemberOf.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Select-EntraGroupIdsUserIsMemberOf.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Select-EntraGroupIdsUserIsMemberOf.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Set-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Set-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Set-EntraGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Set-EntraGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Groups/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Groups/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/New-EntraInvitation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/New-EntraInvitation.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Reports/Get-EntraAuditDirectoryLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Reports/Get-EntraAuditDirectoryLog.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Reports/Get-EntraAuditSignInLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Reports/Get-EntraAuditSignInLog.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Reports/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Reports/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Reports/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Reports/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Reports/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Reports/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraAuthorizationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraAuthorizationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraConditionalAccessPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraConditionalAccessPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraFeatureRolloutPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraFeatureRolloutPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraIdentityProvider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraIdentityProvider.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraOAuth2PermissionGrant.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraOAuth2PermissionGrant.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraPermissionGrantConditionSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraPermissionGrantConditionSet.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraPermissionGrantPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraPermissionGrantPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraTrustedCertificateAuthority.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraTrustedCertificateAuthority.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Get-EntraUserAuthenticationMethod.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Get-EntraUserAuthenticationMethod.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraConditionalAccessPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraConditionalAccessPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraFeatureRolloutPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraFeatureRolloutPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraIdentityProvider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraIdentityProvider.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraInvitation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraInvitation.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraNamedLocationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraNamedLocationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraOauth2PermissionGrant.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraOauth2PermissionGrant.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraPermissionGrantConditionSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraPermissionGrantConditionSet.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraPermissionGrantPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraPermissionGrantPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/New-EntraTrustedCertificateAuthority.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/New-EntraTrustedCertificateAuthority.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Remove-EntraFeatureRolloutPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Remove-EntraFeatureRolloutPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Remove-EntraIdentityProvider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Remove-EntraIdentityProvider.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Remove-EntraNamedLocationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Remove-EntraNamedLocationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Remove-EntraOAuth2PermissionGrant.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Remove-EntraOAuth2PermissionGrant.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Remove-EntraPermissionGrantPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Remove-EntraPermissionGrantPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Remove-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Remove-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraAuthorizationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraAuthorizationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraConditionalAccessPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraConditionalAccessPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraFeatureRolloutPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraFeatureRolloutPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraNamedLocationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraNamedLocationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraPermissionGrantConditionSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraPermissionGrantConditionSet.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraPermissionGrantPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraPermissionGrantPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Set-EntraTrustedCertificateAuthority.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Set-EntraTrustedCertificateAuthority.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/SignIns/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/SignIns/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraDeletedUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraDeletedUser.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraInactiveSignInUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraInactiveSignInUser.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserAdministrativeUnit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserAdministrativeUnit.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserCreatedObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserCreatedObject.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserDirectReport.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserDirectReport.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserExtension.Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserExtension.Test.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserInactiveSignIn.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserInactiveSignIn.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserLicenseDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserLicenseDetail.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserMembership.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserMembership.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserOAuth2PermissionGrant.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserOAuth2PermissionGrant.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserOwnedDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserOwnedDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserOwnedObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserOwnedObject.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserRegisteredDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserRegisteredDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserRole.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserRole.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Get-EntraUserSponsor.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Get-EntraUserSponsor.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Module.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/New-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/New-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/New-EntraUserAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/New-EntraUserAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Remove-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Remove-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Remove-EntraUserAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Remove-EntraUserAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Remove-EntraUserExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Remove-EntraUserExtension.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Remove-EntraUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Remove-EntraUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Remove-EntraUserSponsor.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Remove-EntraUserSponsor.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraSignedInUserPassword.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraSignedInUserPassword.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraUserExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraUserExtension.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraUserLicense.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraUserLicense.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraUserPasswordProfile.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraUserPasswordProfile.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraUserSponsor.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraUserSponsor.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Set-EntraUserThumbnailPhoto.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Set-EntraUserThumbnailPhoto.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Update-EntraUserFromFederated.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Update-EntraUserFromFederated.Tests.ps1 -------------------------------------------------------------------------------- /test/Entra/Users/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/Entra/Users/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Applications/Get-EntraBetaApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Applications/Get-EntraBetaApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Applications/New-EntraBetaApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Applications/New-EntraBetaApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Applications/Remove-EntraBetaApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Applications/Remove-EntraBetaApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Applications/Set-EntraBetaApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Applications/Set-EntraBetaApplication.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/DirectoryManagement/Get-EntraBetaContact.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/DirectoryManagement/Get-EntraBetaContact.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/DirectoryManagement/Get-EntraBetaDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/DirectoryManagement/Get-EntraBetaDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/DirectoryManagement/Set-EntraBetaDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/DirectoryManagement/Set-EntraBetaDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/EntraBeta.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/EntraBeta.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/General.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/General.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Governance/Get-EntraBetaPrivilegedRole.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Governance/Get-EntraBetaPrivilegedRole.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Add-EntraBetaGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Add-EntraBetaGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Add-EntraBetaGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Add-EntraBetaGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Get-EntraBetaDeletedGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Get-EntraBetaDeletedGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Get-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Get-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Get-EntraBetaGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Get-EntraBetaGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Get-EntraBetaGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Get-EntraBetaGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Get-EntraBetaGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Get-EntraBetaGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Get-EntraBetaObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Get-EntraBetaObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/New-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/New-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/New-EntraBetaObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/New-EntraBetaObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Remove-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Remove-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Remove-EntraBetaGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Remove-EntraBetaGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Remove-EntraBetaGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Remove-EntraBetaGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Remove-EntraBetaObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Remove-EntraBetaObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Set-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Set-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Set-EntraBetaGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Set-EntraBetaGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Groups/Set-EntraBetaObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Groups/Set-EntraBetaObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Reports/Get-EntraBetaAuditDirectoryLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Reports/Get-EntraBetaAuditDirectoryLog.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Reports/Get-EntraBetaAuditSignInLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Reports/Get-EntraBetaAuditSignInLog.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/SignIns/Get-EntraBetaPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/SignIns/Get-EntraBetaPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/SignIns/Get-EntraBetaPolicyAppliedObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/SignIns/Get-EntraBetaPolicyAppliedObject.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/SignIns/New-EntraBetaInvitation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/SignIns/New-EntraBetaInvitation.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/SignIns/Remove-EntraBetaPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/SignIns/Remove-EntraBetaPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/SignIns/Set-EntraBetaPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/SignIns/Set-EntraBetaPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaDeletedUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaDeletedUser.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaInactiveSignInUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaInactiveSignInUser.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserExtension.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserGroup.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserInactiveSignIn.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserInactiveSignIn.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserLicenseDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserLicenseDetail.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserMembership.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserMembership.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserOwnedDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserOwnedDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserRegisteredDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserRegisteredDevice.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserRole.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserRole.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Get-EntraBetaUserSponsor.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Get-EntraBetaUserSponsor.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/New-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/New-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Remove-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Remove-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Remove-EntraBetaUserExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Remove-EntraBetaUserExtension.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Remove-EntraBetaUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Remove-EntraBetaUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Remove-EntraBetaUserSponsor.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Remove-EntraBetaUserSponsor.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Set-EntraBetaSignedInUserPassword.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Set-EntraBetaSignedInUserPassword.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Set-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Set-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Set-EntraBetaUserExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Set-EntraBetaUserExtension.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Set-EntraBetaUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Set-EntraBetaUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Set-EntraBetaUserPasswordProfile.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Set-EntraBetaUserPasswordProfile.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Set-EntraBetaUserSponsor.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Set-EntraBetaUserSponsor.Tests.ps1 -------------------------------------------------------------------------------- /test/EntraBeta/Users/Update-EntraBetaUserFromFederated.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test/EntraBeta/Users/Update-EntraBetaUserFromFederated.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/Customizations.Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/Customizations.Test.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Common-Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Common-Functions.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraApplicationOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraApplicationOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraDeviceRegisteredOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraDeviceRegisteredOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraDeviceRegisteredUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraDeviceRegisteredUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraDirectoryRoleMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraDirectoryRoleMember.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraLifecyclePolicyGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraLifecyclePolicyGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraScopedRoleMembership.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraScopedRoleMembership.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Add-EntraServicePrincipalOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Add-EntraServicePrincipalOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/AddtionalFunctions.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/AddtionalFunctions.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Common-Parameter.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Common-Parameter.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Connect-Entra.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Connect-Entra.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Customizations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Customizations.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Disconnect-Entra.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Disconnect-Entra.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Enable-EntraDirectoryRole.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Enable-EntraDirectoryRole.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Entra.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Entra.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/EntraCmdletsMap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/EntraCmdletsMap.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/General.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/General.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraAccountSku.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraAccountSku.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraAdministrativeUnit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraAdministrativeUnit.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraApplicationLogo.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraApplicationLogo.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraApplicationModule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraApplicationModule.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraApplicationOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraApplicationOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraApplicationTemplate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraApplicationTemplate.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraAuditDirectoryLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraAuditDirectoryLog.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraAuditSignInLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraAuditSignInLog.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraAuthorizationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraAuthorizationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraContact.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraContact.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraContactMembership.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraContactMembership.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDeletedApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDeletedApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDeletedGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDeletedGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDeviceRegisteredOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDeviceRegisteredOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDeviceRegisteredUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDeviceRegisteredUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDirSyncConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDirSyncConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDirSyncFeatures.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDirSyncFeatures.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDirectoryRole.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDirectoryRole.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDirectoryRoleMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDirectoryRoleMember.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDirectoryRoleTemplate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDirectoryRoleTemplate.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraDomainNameReference.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraDomainNameReference.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraFeatureRolloutPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraFeatureRolloutPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraFederationProperty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraFederationProperty.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraIdentityProvider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraIdentityProvider.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraLifecyclePolicyGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraLifecyclePolicyGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraOAuth2PermissionGrant.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraOAuth2PermissionGrant.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraObjectByObjectId.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraObjectByObjectId.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraPasswordPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraPasswordPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraPermissionGrantPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraPermissionGrantPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraScopedRoleMembership.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraScopedRoleMembership.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraServicePrincipalOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraServicePrincipalOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraSubscribedSku.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraSubscribedSku.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraTenantDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraTenantDetail.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserCreatedObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserCreatedObject.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserDirectReport.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserDirectReport.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserExtension.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserLicenseDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserLicenseDetail.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserMembership.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserMembership.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserOwnedDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserOwnedDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserOwnedObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserOwnedObject.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Get-EntraUserRegisteredDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Get-EntraUserRegisteredDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Invalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Invalid.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Module.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Module.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraAdministrativeUnit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraAdministrativeUnit.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraApplicationPassword.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraApplicationPassword.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraFeatureRolloutPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraFeatureRolloutPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraIdentityProvider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraIdentityProvider.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraInvitation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraInvitation.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraNamedLocationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraNamedLocationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraOauth2PermissionGrant.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraOauth2PermissionGrant.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraPermissionGrantPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraPermissionGrantPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/New-EntraUserAppRoleAssignment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/New-EntraUserAppRoleAssignment.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraAdministrativeUnit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraAdministrativeUnit.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraApplicationOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraApplicationOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraDeletedApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraDeletedApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraIdentityProvider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraIdentityProvider.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Remove-EntraUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Remove-EntraUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Reset-EntraLifeCycleGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Reset-EntraLifeCycleGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraAdministrativeUnit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraAdministrativeUnit.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraApplicationLogo.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraApplicationLogo.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraAuthorizationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraAuthorizationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraDirSyncConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraDirSyncConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraDirSyncEnabled.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraDirSyncEnabled.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraDirSyncFeature.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraDirSyncFeature.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraDomain.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraFeatureRolloutPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraFeatureRolloutPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraGroupLifecyclePolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraGroupLifecyclePolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraNamedLocationPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraNamedLocationPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraPartnerInformation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraPartnerInformation.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraPermissionGrantPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraPermissionGrantPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraServicePrincipal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraServicePrincipal.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraTenantDetail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraTenantDetail.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraUserLicense.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraUserLicense.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraUserPassword.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraUserPassword.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Set-EntraUserThumbnailPhoto.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Set-EntraUserThumbnailPhoto.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Update-EntraUserFromFederated.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Update-EntraUserFromFederated.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/Entra/Valid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/Entra/Valid.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Add-EntraBetaGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Add-EntraBetaGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Add-EntraBetaGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Add-EntraBetaGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/AddtionalFunctions.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/AddtionalFunctions.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Confirm-EntraBetaDomain.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Confirm-EntraBetaDomain.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Customizations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Customizations.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/EntraBeta.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/EntraBeta.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/General.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/General.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaAccountSku.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaAccountSku.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaDeletedGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaDeletedGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaUserExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaUserExtension.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Get-EntraBetaUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Get-EntraBetaUserManager.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/New-EntraBetaApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/New-EntraBetaApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/New-EntraBetaAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/New-EntraBetaAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/New-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/New-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/New-EntraBetaObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/New-EntraBetaObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/New-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/New-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Remove-EntraBetaDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Remove-EntraBetaDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Remove-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Remove-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Remove-EntraBetaGroupOwner.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Remove-EntraBetaGroupOwner.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Remove-EntraBetaPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Remove-EntraBetaPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Remove-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Remove-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaApplication.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaApplication.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaAttributeSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaAttributeSet.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaDevice.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaDevice.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaGroup.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaObjectSetting.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaObjectSetting.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaPolicy.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaUser.Tests.ps1 -------------------------------------------------------------------------------- /test_legacy/module/EntraBeta/Set-EntraBetaUserManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/entra-powershell/HEAD/test_legacy/module/EntraBeta/Set-EntraBetaUserManager.Tests.ps1 --------------------------------------------------------------------------------