├── .github ├── FUNDING.yml └── workflows │ └── test-powershell-module.yml ├── Build └── BuildModule.ps1 ├── CHANGELOG.MD ├── COMMANDS.MD ├── Examples ├── CommandList.ps1 ├── GetO365ADRoles.ps1 ├── GetO365AzureADConnect.ps1 ├── GetO365AzureConditionalAccess.ps1 ├── GetO365AzureConditionalAccessDetails.ps1 ├── GetO365AzureElevatedAccess.ps1 ├── GetO365AzureEnterpriseApp.ps1 ├── GetO365AzureEnterpriseAppUserSettings.ps1 ├── GetO365AzureExternalCollaborationRestrictions.ps1 ├── GetO365AzureGroupExpiration.ps1 ├── GetO365AzureGroupGeneral.ps1 ├── GetO365AzureGroupNaming.ps1 ├── GetO365AzurePropertiesSecurity.ps1 ├── GetO365Billing.ps1 ├── GetO365BingDataCollection.ps1 ├── GetO365Bookings.ps1 ├── GetO365CopilotPin.ps1 ├── GetO365Domain.ps1 ├── GetO365Forms.ps1 ├── GetO365GraphDataConnect.ps1 ├── GetO365Information.ps1 ├── GetO365InformationPrompt.ps1 ├── GetO365InformationViaSubscription.ps1 ├── GetO365InformationWithAuth.ps1 ├── GetO365InstallationOptions.ps1 ├── GetO365LicenseRequests.ps1 ├── GetO365ModernAuthentication.ps1 ├── GetO365MultifactorAuthentication.ps1 ├── GetO365MyAnalytics.ps1 ├── GetO365News.ps1 ├── GetO365OfficeOnTheWeb.ps1 ├── GetO365OrgAccountLinking.ps1 ├── GetO365OrgAdoptionScore.ps1 ├── GetO365OrgConsentApps.ps1 ├── GetO365OrgCustomerLockbox.ps1 ├── GetO365OrgDynamics365.ps1 ├── GetO365OrgHelpdeskInformation.ps1 ├── GetO365OrgLicensesAutoClaim.ps1 ├── GetO365OrgOfficeProductivity.ps1 ├── GetO365OrgOrganizationInformation.ps1 ├── GetO365OrgPlanner.ps1 ├── GetO365OrgPriviledgedAccess.ps1 ├── GetO365OrgReports.ps1 ├── GetO365OrgSendEmailNotification.ps1 ├── GetO365OrgSharePoint.ps1 ├── GetO365OrgSway.ps1 ├── GetO365OrgUserOwnedApps.ps1 ├── GetO365Partners.ps1 ├── GetO365Password.ps1 ├── GetO365PasswordExpiration.ps1 ├── GetO365PrivacyProfile.ps1 ├── GetO365Project.ps1 ├── GetO365RealeasePreference.ps1 ├── GetO365Scripts.ps1 ├── GetO365SearchIntelligence.ps1 ├── GetO365SearchIntelligenceItemInsights.ps1 ├── GetO365SericePrincipal.ps1 ├── GetO365Sharing.ps1 ├── GetO365ToDo.ps1 ├── GetO365UsersAndGroups.ps1 ├── GetO365VivaLearning.ps1 ├── GetO365Whiteboard.ps1 ├── NotWorking │ ├── GetO365AzureAuthenticationMethodsPolicies.ps1 │ ├── GetO365AzureExternal.ps1 │ ├── GetO365AzureGroupLicensing.ps1 │ ├── GetO365AzureGroupLicensingSet.ps1 │ ├── GetO365AzureLicensing.ps1 │ ├── GetO365ExternalCollaboration.ps1 │ ├── GetO365NotWorking.ps1 │ └── GetO365SharePoint.ps1 ├── SetO365AzureElevatedAccess.ps1 ├── SetO365Information.ps1 ├── SetO365InformationAzureSpeech.ps1 ├── SetO365InformationEndUserCommunication.ps1 ├── SetO365InformationMicrosoftGroups.ps1 └── SetO365InformationWithAuth.ps1 ├── O365Essentials.Tests.ps1 ├── O365Essentials.psd1 ├── O365Essentials.psm1 ├── Private ├── Convert-AzureEnterpriseAppsUserConsent.ps1 ├── Convert-AzureRole.ps1 ├── Convert-CompanyType.ps1 ├── Convert-ContractType.ps1 ├── Convert-SKUToLicense.ps1 ├── ConvertTo-Base64.ps1 ├── Find-EnabledServicePlan.ps1 ├── Get-O365OAuthToken.ps1 ├── Get-O365PrivateUserOrSPN.ps1 └── Script.O365PolicyState.ps1 ├── Public ├── Connect-O365Admin.ps1 ├── ConvertFrom-JSONWebToken.ps1 ├── Disconnect-O365Admin.ps1 ├── Get-O365AzureADConnect.ps1 ├── Get-O365AzureADConnectPTA.ps1 ├── Get-O365AzureADConnectSSO.ps1 ├── Get-O365AzureADRoles.ps1 ├── Get-O365AzureADRolesMember.ps1 ├── Get-O365AzureConditionalAccess.ps1 ├── Get-O365AzureConditionalAccessClassic.ps1 ├── Get-O365AzureConditionalAccessLocations.ps1 ├── Get-O365AzureConditionalAccessPolicy.ps1 ├── Get-O365AzureConditionalAccessTerms.ps1 ├── Get-O365AzureConditionalAccessVPN.ps1 ├── Get-O365AzureElevatedDenyAssignments.ps1 ├── Get-O365AzureElevatedRoleAssignments.ps1 ├── Get-O365AzureEnterpriseAppsGroupConsent.ps1 ├── Get-O365AzureEnterpriseAppsUserConsent.ps1 ├── Get-O365AzureEnterpriseAppsUserSettings.ps1 ├── Get-O365AzureEnterpriseAppsUserSettingsAdmin.ps1 ├── Get-O365AzureEnterpriseAppsUserSettingsPromoted.ps1 ├── Get-O365AzureExternalCollaborationFlows.ps1 ├── Get-O365AzureExternalCollaborationRestrictions.ps1 ├── Get-O365AzureExternalCollaborationSettings.ps1 ├── Get-O365AzureExternalIdentitiesEmail.ps1 ├── Get-O365AzureExternalIdentitiesPolicies.ps1 ├── Get-O365AzureFeatureConfiguration.ps1 ├── Get-O365AzureFeaturePortal.ps1 ├── Get-O365AzureGroupExpiration.ps1 ├── Get-O365AzureGroupGeneral.ps1 ├── Get-O365AzureGroupM365.ps1 ├── Get-O365AzureGroupNamingPolicy.ps1 ├── Get-O365AzureGroupSecurity.ps1 ├── Get-O365AzureGroupSelfService.ps1 ├── Get-O365AzureLicenses.ps1 ├── Get-O365AzureMultiFactorAuthentication.ps1 ├── Get-O365AzureProperties.ps1 ├── Get-O365AzurePropertiesSecurity.ps1 ├── Get-O365AzureTenantSku.ps1 ├── Get-O365AzureUserSettings.ps1 ├── Get-O365BillingAccounts.ps1 ├── Get-O365BillingInvoices.ps1 ├── Get-O365BillingLicenseAutoClaim.ps1 ├── Get-O365BillingLicenseRequests.ps1 ├── Get-O365BillingNotifications.ps1 ├── Get-O365BillingNotificationsList.ps1 ├── Get-O365BillingPaymentMethods.ps1 ├── Get-O365BillingProfile.ps1 ├── Get-O365BillingSubscriptions.ps1 ├── Get-O365ConsiergeAll.ps1 ├── Get-O365CopilotPin.ps1 ├── Get-O365DirectorySync.ps1 ├── Get-O365DirectorySyncErrors.ps1 ├── Get-O365DirectorySyncManagement.ps1 ├── Get-O365Domain.ps1 ├── Get-O365DomainDependencies.ps1 ├── Get-O365DomainHealth.ps1 ├── Get-O365DomainRecords.ps1 ├── Get-O365DomainTroubleshooting.ps1 ├── Get-O365Group.ps1 ├── Get-O365GroupAdministrativeUnit.ps1 ├── Get-O365GroupLicenses.ps1 ├── Get-O365GroupMember.ps1 ├── Get-O365OrgAccountLinking.ps1 ├── Get-O365OrgAdoptionScore.ps1 ├── Get-O365OrgAdoptionScoreConfig.ps1 ├── Get-O365OrgAzureSpeechServices.ps1 ├── Get-O365OrgBingDataCollection.ps1 ├── Get-O365OrgBookings.ps1 ├── Get-O365OrgBriefingEmail.ps1 ├── Get-O365OrgCalendarSharing.ps1 ├── Get-O365OrgCommunicationToUsers.ps1 ├── Get-O365OrgCortana.ps1 ├── Get-O365OrgCustomThemes.ps1 ├── Get-O365OrgCustomerLockbox.ps1 ├── Get-O365OrgDataLocation.ps1 ├── Get-O365OrgDynamics365ConnectionGraph.ps1 ├── Get-O365OrgDynamics365CustomerVoice.ps1 ├── Get-O365OrgDynamics365SalesInsights.ps1 ├── Get-O365OrgForms.ps1 ├── Get-O365OrgGraphDataConnect.ps1 ├── Get-O365OrgHelpdeskInformation.ps1 ├── Get-O365OrgInstallationOptions.ps1 ├── Get-O365OrgM365Groups.ps1 ├── Get-O365OrgMicrosoftEdgeSiteLists.ps1 ├── Get-O365OrgMicrosoftTeams.ps1 ├── Get-O365OrgModernAuthentication.ps1 ├── Get-O365OrgMyAnalytics.ps1 ├── Get-O365OrgNews.ps1 ├── Get-O365OrgOfficeOnTheWeb.ps1 ├── Get-O365OrgOfficeProductivity.ps1 ├── Get-O365OrgOrganizationInformation.ps1 ├── Get-O365OrgPasswordExpirationPolicy.ps1 ├── Get-O365OrgPlanner.ps1 ├── Get-O365OrgPrivacyProfile.ps1 ├── Get-O365OrgPrivilgedAccess.ps1 ├── Get-O365OrgProject.ps1 ├── Get-O365OrgReports.ps1 ├── Get-O365OrgScripts.ps1 ├── Get-O365OrgSendEmailNotification.ps1 ├── Get-O365OrgSharePoint.ps1 ├── Get-O365OrgSharing.ps1 ├── Get-O365OrgSway.ps1 ├── Get-O365OrgToDo.ps1 ├── Get-O365OrgUserConsentApps.ps1 ├── Get-O365OrgUserOwnedApps.ps1 ├── Get-O365OrgVivaLearning.ps1 ├── Get-O365OrgWhiteboard.ps1 ├── Get-O365PartnerRelationship.ps1 ├── Get-O365PasswordReset.ps1 ├── Get-O365PasswordResetIntegration.ps1 ├── Get-O365ReleasePreferences.ps1 ├── Get-O365SearchIntelligenceBingConfigurations.ps1 ├── Get-O365SearchIntelligenceBingExtensions.ps1 ├── Get-O365SearchIntelligenceItemInsights.ps1 ├── Get-O365SearchIntelligenceMeetingInsights.ps1 ├── Get-O365ServicePrincipal.ps1 ├── Get-O365TenantID.ps1 ├── Get-O365User.ps1 ├── Invoke-O365Admin.ps1 ├── New-O365License.ps1 ├── Remove-O365AzureElevatedAccess.ps1 ├── Set-O365AzureElevatedAccess.ps1 ├── Set-O365AzureEnterpriseAppsGroupConsent.ps1 ├── Set-O365AzureEnterpriseAppsUserConsent.ps1 ├── Set-O365AzureEnterpriseAppsUserSettings.ps1 ├── Set-O365AzureEnterpriseAppsUserSettingsAdmin.ps1 ├── Set-O365AzureExternalCollaborationRestrictions.ps1 ├── Set-O365AzureExternalCollaborationSettings.ps1 ├── Set-O365AzureGroupExpiration.ps1 ├── Set-O365AzureGroupM365.ps1 ├── Set-O365AzureGroupNamingPolicy.ps1 ├── Set-O365AzureGroupSecurity.ps1 ├── Set-O365AzureGroupSelfService.ps1 ├── Set-O365AzureMultiFactorAuthentication.ps1 ├── Set-O365AzureProperties.ps1 ├── Set-O365AzurePropertiesSecurity.ps1 ├── Set-O365AzureUserSettings.ps1 ├── Set-O365BillingLicenseAutoClaim.ps1 ├── Set-O365BillingNotifications.ps1 ├── Set-O365GroupLicenses.ps1 ├── Set-O365OrgAccountLinking.ps1 ├── Set-O365OrgAdoptionScore.ps1 ├── Set-O365OrgAzureSpeechServices.ps1 ├── Set-O365OrgBingDataCollection.ps1 ├── Set-O365OrgBookings.ps1 ├── Set-O365OrgBriefingEmail.ps1 ├── Set-O365OrgCalendarSharing.ps1 ├── Set-O365OrgCommunicationToUsers.ps1 ├── Set-O365OrgCortana.ps1 ├── Set-O365OrgCustomerLockbox.ps1 ├── Set-O365OrgDynamics365ConnectionGraph.ps1 ├── Set-O365OrgDynamics365CustomerVoice.ps1 ├── Set-O365OrgDynamics365SalesInsights.ps1 ├── Set-O365OrgForms.ps1 ├── Set-O365OrgGraphDataConnect.ps1 ├── Set-O365OrgHelpdeskInformation.ps1 ├── Set-O365OrgInstallationOptions.ps1 ├── Set-O365OrgM365Groups.ps1 ├── Set-O365OrgMicrosoftTeams.ps1 ├── Set-O365OrgModernAuthentication.ps1 ├── Set-O365OrgMyAnalytics.ps1 ├── Set-O365OrgNews.ps1 ├── Set-O365OrgOfficeOnTheWeb.ps1 ├── Set-O365OrgOfficeProductivity.ps1 ├── Set-O365OrgOrganizationInformation.ps1 ├── Set-O365OrgPasswordExpirationPolicy.ps1 ├── Set-O365OrgPlanner.ps1 ├── Set-O365OrgPrivacyProfile.ps1 ├── Set-O365OrgPrivilegedAccess.ps1 ├── Set-O365OrgProject.ps1 ├── Set-O365OrgReleasePreferences.ps1 ├── Set-O365OrgReports.ps1 ├── Set-O365OrgScripts.ps1 ├── Set-O365OrgSendEmailNotification.ps1 ├── Set-O365OrgSharePoint.ps1 ├── Set-O365OrgSharing.ps1 ├── Set-O365OrgSway.ps1 ├── Set-O365OrgTodo.ps1 ├── Set-O365OrgUserConsentApps.ps1 ├── Set-O365OrgUserOwnedApps.ps1 ├── Set-O365OrgVivaLearning.ps1 ├── Set-O365OrgWhiteboard.ps1 ├── Set-O365PasswordReset.ps1 ├── Set-O365PasswordResetIntegration.ps1 ├── Set-O365SearchIntelligenceBingConfigurations.ps1 ├── Set-O365SearchIntelligenceBingExtension.ps1 ├── Set-O365SearchIntelligenceItemInsights.ps1 └── Set-O365SearchIntelligenceMeetingInsights.ps1 ├── README.MD └── Tests ├── Get-O365OAuthToken.Tests.ps1 └── Invoke-O365Admin.Tests.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test-powershell-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/.github/workflows/test-powershell-module.yml -------------------------------------------------------------------------------- /Build/BuildModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Build/BuildModule.ps1 -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /COMMANDS.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/COMMANDS.MD -------------------------------------------------------------------------------- /Examples/CommandList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/CommandList.ps1 -------------------------------------------------------------------------------- /Examples/GetO365ADRoles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365ADRoles.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureADConnect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureADConnect.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureConditionalAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureConditionalAccess.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureConditionalAccessDetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureConditionalAccessDetails.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureElevatedAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureElevatedAccess.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureEnterpriseApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureEnterpriseApp.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureEnterpriseAppUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureEnterpriseAppUserSettings.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureExternalCollaborationRestrictions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureExternalCollaborationRestrictions.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureGroupExpiration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureGroupExpiration.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureGroupGeneral.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureGroupGeneral.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzureGroupNaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzureGroupNaming.ps1 -------------------------------------------------------------------------------- /Examples/GetO365AzurePropertiesSecurity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365AzurePropertiesSecurity.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Billing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Billing.ps1 -------------------------------------------------------------------------------- /Examples/GetO365BingDataCollection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365BingDataCollection.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Bookings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Bookings.ps1 -------------------------------------------------------------------------------- /Examples/GetO365CopilotPin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365CopilotPin.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Domain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Domain.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Forms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Forms.ps1 -------------------------------------------------------------------------------- /Examples/GetO365GraphDataConnect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365GraphDataConnect.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Information.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Information.ps1 -------------------------------------------------------------------------------- /Examples/GetO365InformationPrompt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365InformationPrompt.ps1 -------------------------------------------------------------------------------- /Examples/GetO365InformationViaSubscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365InformationViaSubscription.ps1 -------------------------------------------------------------------------------- /Examples/GetO365InformationWithAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365InformationWithAuth.ps1 -------------------------------------------------------------------------------- /Examples/GetO365InstallationOptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365InstallationOptions.ps1 -------------------------------------------------------------------------------- /Examples/GetO365LicenseRequests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365LicenseRequests.ps1 -------------------------------------------------------------------------------- /Examples/GetO365ModernAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365ModernAuthentication.ps1 -------------------------------------------------------------------------------- /Examples/GetO365MultifactorAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365MultifactorAuthentication.ps1 -------------------------------------------------------------------------------- /Examples/GetO365MyAnalytics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365MyAnalytics.ps1 -------------------------------------------------------------------------------- /Examples/GetO365News.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365News.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OfficeOnTheWeb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OfficeOnTheWeb.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgAccountLinking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgAccountLinking.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgAdoptionScore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgAdoptionScore.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgConsentApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgConsentApps.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgCustomerLockbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgCustomerLockbox.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgDynamics365.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgDynamics365.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgHelpdeskInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgHelpdeskInformation.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgLicensesAutoClaim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgLicensesAutoClaim.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgOfficeProductivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgOfficeProductivity.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgOrganizationInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgOrganizationInformation.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgPlanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgPlanner.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgPriviledgedAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgPriviledgedAccess.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgReports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgReports.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgSendEmailNotification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgSendEmailNotification.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgSharePoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgSharePoint.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgSway.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgSway.ps1 -------------------------------------------------------------------------------- /Examples/GetO365OrgUserOwnedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365OrgUserOwnedApps.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Partners.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Partners.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Password.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Password.ps1 -------------------------------------------------------------------------------- /Examples/GetO365PasswordExpiration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365PasswordExpiration.ps1 -------------------------------------------------------------------------------- /Examples/GetO365PrivacyProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365PrivacyProfile.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Project.ps1 -------------------------------------------------------------------------------- /Examples/GetO365RealeasePreference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365RealeasePreference.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Scripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Scripts.ps1 -------------------------------------------------------------------------------- /Examples/GetO365SearchIntelligence.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365SearchIntelligence.ps1 -------------------------------------------------------------------------------- /Examples/GetO365SearchIntelligenceItemInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365SearchIntelligenceItemInsights.ps1 -------------------------------------------------------------------------------- /Examples/GetO365SericePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365SericePrincipal.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Sharing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Sharing.ps1 -------------------------------------------------------------------------------- /Examples/GetO365ToDo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365ToDo.ps1 -------------------------------------------------------------------------------- /Examples/GetO365UsersAndGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365UsersAndGroups.ps1 -------------------------------------------------------------------------------- /Examples/GetO365VivaLearning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365VivaLearning.ps1 -------------------------------------------------------------------------------- /Examples/GetO365Whiteboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/GetO365Whiteboard.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365AzureAuthenticationMethodsPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365AzureAuthenticationMethodsPolicies.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365AzureExternal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365AzureExternal.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365AzureGroupLicensing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365AzureGroupLicensing.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365AzureGroupLicensingSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365AzureGroupLicensingSet.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365AzureLicensing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365AzureLicensing.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365ExternalCollaboration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365ExternalCollaboration.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365NotWorking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365NotWorking.ps1 -------------------------------------------------------------------------------- /Examples/NotWorking/GetO365SharePoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/NotWorking/GetO365SharePoint.ps1 -------------------------------------------------------------------------------- /Examples/SetO365AzureElevatedAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/SetO365AzureElevatedAccess.ps1 -------------------------------------------------------------------------------- /Examples/SetO365Information.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/SetO365Information.ps1 -------------------------------------------------------------------------------- /Examples/SetO365InformationAzureSpeech.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/SetO365InformationAzureSpeech.ps1 -------------------------------------------------------------------------------- /Examples/SetO365InformationEndUserCommunication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/SetO365InformationEndUserCommunication.ps1 -------------------------------------------------------------------------------- /Examples/SetO365InformationMicrosoftGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/SetO365InformationMicrosoftGroups.ps1 -------------------------------------------------------------------------------- /Examples/SetO365InformationWithAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Examples/SetO365InformationWithAuth.ps1 -------------------------------------------------------------------------------- /O365Essentials.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/O365Essentials.Tests.ps1 -------------------------------------------------------------------------------- /O365Essentials.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/O365Essentials.psd1 -------------------------------------------------------------------------------- /O365Essentials.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/O365Essentials.psm1 -------------------------------------------------------------------------------- /Private/Convert-AzureEnterpriseAppsUserConsent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Convert-AzureEnterpriseAppsUserConsent.ps1 -------------------------------------------------------------------------------- /Private/Convert-AzureRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Convert-AzureRole.ps1 -------------------------------------------------------------------------------- /Private/Convert-CompanyType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Convert-CompanyType.ps1 -------------------------------------------------------------------------------- /Private/Convert-ContractType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Convert-ContractType.ps1 -------------------------------------------------------------------------------- /Private/Convert-SKUToLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Convert-SKUToLicense.ps1 -------------------------------------------------------------------------------- /Private/ConvertTo-Base64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/ConvertTo-Base64.ps1 -------------------------------------------------------------------------------- /Private/Find-EnabledServicePlan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Find-EnabledServicePlan.ps1 -------------------------------------------------------------------------------- /Private/Get-O365OAuthToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Get-O365OAuthToken.ps1 -------------------------------------------------------------------------------- /Private/Get-O365PrivateUserOrSPN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Get-O365PrivateUserOrSPN.ps1 -------------------------------------------------------------------------------- /Private/Script.O365PolicyState.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Private/Script.O365PolicyState.ps1 -------------------------------------------------------------------------------- /Public/Connect-O365Admin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Connect-O365Admin.ps1 -------------------------------------------------------------------------------- /Public/ConvertFrom-JSONWebToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/ConvertFrom-JSONWebToken.ps1 -------------------------------------------------------------------------------- /Public/Disconnect-O365Admin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Disconnect-O365Admin.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureADConnect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureADConnect.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureADConnectPTA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureADConnectPTA.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureADConnectSSO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureADConnectSSO.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureADRoles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureADRoles.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureADRolesMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureADRolesMember.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureConditionalAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureConditionalAccess.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureConditionalAccessClassic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureConditionalAccessClassic.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureConditionalAccessLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureConditionalAccessLocations.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureConditionalAccessPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureConditionalAccessPolicy.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureConditionalAccessTerms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureConditionalAccessTerms.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureConditionalAccessVPN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureConditionalAccessVPN.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureElevatedDenyAssignments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureElevatedDenyAssignments.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureElevatedRoleAssignments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureElevatedRoleAssignments.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureEnterpriseAppsGroupConsent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureEnterpriseAppsGroupConsent.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureEnterpriseAppsUserConsent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureEnterpriseAppsUserConsent.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureEnterpriseAppsUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureEnterpriseAppsUserSettings.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureEnterpriseAppsUserSettingsAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureEnterpriseAppsUserSettingsAdmin.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureEnterpriseAppsUserSettingsPromoted.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureEnterpriseAppsUserSettingsPromoted.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureExternalCollaborationFlows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureExternalCollaborationFlows.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureExternalCollaborationRestrictions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureExternalCollaborationRestrictions.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureExternalCollaborationSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureExternalCollaborationSettings.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureExternalIdentitiesEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureExternalIdentitiesEmail.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureExternalIdentitiesPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureExternalIdentitiesPolicies.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureFeatureConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureFeatureConfiguration.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureFeaturePortal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureFeaturePortal.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureGroupExpiration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureGroupExpiration.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureGroupGeneral.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureGroupGeneral.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureGroupM365.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureGroupM365.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureGroupNamingPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureGroupNamingPolicy.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureGroupSecurity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureGroupSecurity.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureGroupSelfService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureGroupSelfService.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureLicenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureLicenses.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureMultiFactorAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureMultiFactorAuthentication.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureProperties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureProperties.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzurePropertiesSecurity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzurePropertiesSecurity.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureTenantSku.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureTenantSku.ps1 -------------------------------------------------------------------------------- /Public/Get-O365AzureUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365AzureUserSettings.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingAccounts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingAccounts.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingInvoices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingInvoices.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingLicenseAutoClaim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingLicenseAutoClaim.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingLicenseRequests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingLicenseRequests.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingNotifications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingNotifications.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingNotificationsList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingNotificationsList.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingPaymentMethods.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingPaymentMethods.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingProfile.ps1 -------------------------------------------------------------------------------- /Public/Get-O365BillingSubscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365BillingSubscriptions.ps1 -------------------------------------------------------------------------------- /Public/Get-O365ConsiergeAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365ConsiergeAll.ps1 -------------------------------------------------------------------------------- /Public/Get-O365CopilotPin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365CopilotPin.ps1 -------------------------------------------------------------------------------- /Public/Get-O365DirectorySync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365DirectorySync.ps1 -------------------------------------------------------------------------------- /Public/Get-O365DirectorySyncErrors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365DirectorySyncErrors.ps1 -------------------------------------------------------------------------------- /Public/Get-O365DirectorySyncManagement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365DirectorySyncManagement.ps1 -------------------------------------------------------------------------------- /Public/Get-O365Domain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365Domain.ps1 -------------------------------------------------------------------------------- /Public/Get-O365DomainDependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365DomainDependencies.ps1 -------------------------------------------------------------------------------- /Public/Get-O365DomainHealth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365DomainHealth.ps1 -------------------------------------------------------------------------------- /Public/Get-O365DomainRecords.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365DomainRecords.ps1 -------------------------------------------------------------------------------- /Public/Get-O365DomainTroubleshooting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365DomainTroubleshooting.ps1 -------------------------------------------------------------------------------- /Public/Get-O365Group.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365Group.ps1 -------------------------------------------------------------------------------- /Public/Get-O365GroupAdministrativeUnit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365GroupAdministrativeUnit.ps1 -------------------------------------------------------------------------------- /Public/Get-O365GroupLicenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365GroupLicenses.ps1 -------------------------------------------------------------------------------- /Public/Get-O365GroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365GroupMember.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgAccountLinking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgAccountLinking.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgAdoptionScore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgAdoptionScore.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgAdoptionScoreConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgAdoptionScoreConfig.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgAzureSpeechServices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgAzureSpeechServices.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgBingDataCollection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgBingDataCollection.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgBookings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgBookings.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgBriefingEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgBriefingEmail.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgCalendarSharing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgCalendarSharing.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgCommunicationToUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgCommunicationToUsers.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgCortana.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgCortana.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgCustomThemes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgCustomThemes.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgCustomerLockbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgCustomerLockbox.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgDataLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgDataLocation.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgDynamics365ConnectionGraph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgDynamics365ConnectionGraph.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgDynamics365CustomerVoice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgDynamics365CustomerVoice.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgDynamics365SalesInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgDynamics365SalesInsights.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgForms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgForms.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgGraphDataConnect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgGraphDataConnect.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgHelpdeskInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgHelpdeskInformation.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgInstallationOptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgInstallationOptions.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgM365Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgM365Groups.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgMicrosoftEdgeSiteLists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgMicrosoftEdgeSiteLists.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgMicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgMicrosoftTeams.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgModernAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgModernAuthentication.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgMyAnalytics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgMyAnalytics.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgNews.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgNews.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgOfficeOnTheWeb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgOfficeOnTheWeb.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgOfficeProductivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgOfficeProductivity.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgOrganizationInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgOrganizationInformation.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgPasswordExpirationPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgPasswordExpirationPolicy.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgPlanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgPlanner.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgPrivacyProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgPrivacyProfile.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgPrivilgedAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgPrivilgedAccess.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgProject.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgReports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgReports.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgScripts.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgSendEmailNotification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgSendEmailNotification.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgSharePoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgSharePoint.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgSharing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgSharing.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgSway.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgSway.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgToDo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgToDo.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgUserConsentApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgUserConsentApps.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgUserOwnedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgUserOwnedApps.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgVivaLearning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgVivaLearning.ps1 -------------------------------------------------------------------------------- /Public/Get-O365OrgWhiteboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365OrgWhiteboard.ps1 -------------------------------------------------------------------------------- /Public/Get-O365PartnerRelationship.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365PartnerRelationship.ps1 -------------------------------------------------------------------------------- /Public/Get-O365PasswordReset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365PasswordReset.ps1 -------------------------------------------------------------------------------- /Public/Get-O365PasswordResetIntegration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365PasswordResetIntegration.ps1 -------------------------------------------------------------------------------- /Public/Get-O365ReleasePreferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365ReleasePreferences.ps1 -------------------------------------------------------------------------------- /Public/Get-O365SearchIntelligenceBingConfigurations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365SearchIntelligenceBingConfigurations.ps1 -------------------------------------------------------------------------------- /Public/Get-O365SearchIntelligenceBingExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365SearchIntelligenceBingExtensions.ps1 -------------------------------------------------------------------------------- /Public/Get-O365SearchIntelligenceItemInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365SearchIntelligenceItemInsights.ps1 -------------------------------------------------------------------------------- /Public/Get-O365SearchIntelligenceMeetingInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365SearchIntelligenceMeetingInsights.ps1 -------------------------------------------------------------------------------- /Public/Get-O365ServicePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365ServicePrincipal.ps1 -------------------------------------------------------------------------------- /Public/Get-O365TenantID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365TenantID.ps1 -------------------------------------------------------------------------------- /Public/Get-O365User.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Get-O365User.ps1 -------------------------------------------------------------------------------- /Public/Invoke-O365Admin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Invoke-O365Admin.ps1 -------------------------------------------------------------------------------- /Public/New-O365License.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/New-O365License.ps1 -------------------------------------------------------------------------------- /Public/Remove-O365AzureElevatedAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Remove-O365AzureElevatedAccess.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureElevatedAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureElevatedAccess.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureEnterpriseAppsGroupConsent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureEnterpriseAppsGroupConsent.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureEnterpriseAppsUserConsent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureEnterpriseAppsUserConsent.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureEnterpriseAppsUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureEnterpriseAppsUserSettings.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureEnterpriseAppsUserSettingsAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureEnterpriseAppsUserSettingsAdmin.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureExternalCollaborationRestrictions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureExternalCollaborationRestrictions.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureExternalCollaborationSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureExternalCollaborationSettings.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureGroupExpiration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureGroupExpiration.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureGroupM365.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureGroupM365.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureGroupNamingPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureGroupNamingPolicy.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureGroupSecurity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureGroupSecurity.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureGroupSelfService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureGroupSelfService.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureMultiFactorAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureMultiFactorAuthentication.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureProperties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureProperties.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzurePropertiesSecurity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzurePropertiesSecurity.ps1 -------------------------------------------------------------------------------- /Public/Set-O365AzureUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365AzureUserSettings.ps1 -------------------------------------------------------------------------------- /Public/Set-O365BillingLicenseAutoClaim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365BillingLicenseAutoClaim.ps1 -------------------------------------------------------------------------------- /Public/Set-O365BillingNotifications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365BillingNotifications.ps1 -------------------------------------------------------------------------------- /Public/Set-O365GroupLicenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365GroupLicenses.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgAccountLinking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgAccountLinking.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgAdoptionScore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgAdoptionScore.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgAzureSpeechServices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgAzureSpeechServices.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgBingDataCollection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgBingDataCollection.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgBookings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgBookings.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgBriefingEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgBriefingEmail.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgCalendarSharing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgCalendarSharing.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgCommunicationToUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgCommunicationToUsers.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgCortana.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgCortana.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgCustomerLockbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgCustomerLockbox.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgDynamics365ConnectionGraph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgDynamics365ConnectionGraph.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgDynamics365CustomerVoice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgDynamics365CustomerVoice.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgDynamics365SalesInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgDynamics365SalesInsights.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgForms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgForms.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgGraphDataConnect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgGraphDataConnect.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgHelpdeskInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgHelpdeskInformation.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgInstallationOptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgInstallationOptions.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgM365Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgM365Groups.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgMicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgMicrosoftTeams.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgModernAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgModernAuthentication.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgMyAnalytics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgMyAnalytics.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgNews.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgNews.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgOfficeOnTheWeb.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgOfficeOnTheWeb.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgOfficeProductivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgOfficeProductivity.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgOrganizationInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgOrganizationInformation.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgPasswordExpirationPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgPasswordExpirationPolicy.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgPlanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgPlanner.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgPrivacyProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgPrivacyProfile.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgPrivilegedAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgPrivilegedAccess.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgProject.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgReleasePreferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgReleasePreferences.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgReports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgReports.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgScripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgScripts.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgSendEmailNotification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgSendEmailNotification.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgSharePoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgSharePoint.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgSharing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgSharing.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgSway.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgSway.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgTodo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgTodo.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgUserConsentApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgUserConsentApps.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgUserOwnedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgUserOwnedApps.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgVivaLearning.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgVivaLearning.ps1 -------------------------------------------------------------------------------- /Public/Set-O365OrgWhiteboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365OrgWhiteboard.ps1 -------------------------------------------------------------------------------- /Public/Set-O365PasswordReset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365PasswordReset.ps1 -------------------------------------------------------------------------------- /Public/Set-O365PasswordResetIntegration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365PasswordResetIntegration.ps1 -------------------------------------------------------------------------------- /Public/Set-O365SearchIntelligenceBingConfigurations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365SearchIntelligenceBingConfigurations.ps1 -------------------------------------------------------------------------------- /Public/Set-O365SearchIntelligenceBingExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365SearchIntelligenceBingExtension.ps1 -------------------------------------------------------------------------------- /Public/Set-O365SearchIntelligenceItemInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365SearchIntelligenceItemInsights.ps1 -------------------------------------------------------------------------------- /Public/Set-O365SearchIntelligenceMeetingInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Public/Set-O365SearchIntelligenceMeetingInsights.ps1 -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/README.MD -------------------------------------------------------------------------------- /Tests/Get-O365OAuthToken.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Tests/Get-O365OAuthToken.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Invoke-O365Admin.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/O365Essentials/HEAD/Tests/Invoke-O365Admin.Tests.ps1 --------------------------------------------------------------------------------