├── .github ├── ISSUE_TEMPLATE │ └── BUG-REPORT.yml └── pull_request_template.md ├── .gitignore ├── CSV Samples ├── SDS Format │ ├── 100 Users │ │ ├── School.csv │ │ ├── Section.csv │ │ ├── Student.csv │ │ ├── StudentEnrollment.csv │ │ ├── Teacher.csv │ │ └── TeacherRoster.csv │ ├── 25 Users │ │ ├── School.csv │ │ ├── Section.csv │ │ ├── Student.csv │ │ ├── StudentEnrollment.csv │ │ ├── Teacher.csv │ │ └── TeacherRoster.csv │ └── Min Required Attributes │ │ ├── School.csv │ │ ├── Section.csv │ │ ├── Student.csv │ │ ├── StudentEnrollment.csv │ │ ├── Teacher.csv │ │ └── TeacherRoster.csv ├── SDS v2.1 │ ├── academicSessions.csv │ ├── classes.csv │ ├── courses.csv │ ├── demographics.csv │ ├── enrollments.csv │ ├── orgs.csv │ ├── relationships.csv │ ├── roles.csv │ ├── userFlags.csv │ └── users.csv ├── SDS v2 │ ├── classes.csv │ ├── enrollments.csv │ ├── orgs.csv │ └── users.csv └── UK Format │ ├── 100 Users │ ├── School.csv │ ├── Section.csv │ ├── Student.csv │ ├── StudentEnrollment.csv │ ├── Teacher.csv │ └── TeacherRoster.csv │ ├── 25 Users │ ├── School.csv │ ├── Section.csv │ ├── Student.csv │ ├── StudentEnrollment.csv │ ├── Teacher.csv │ └── TeacherRoster.csv │ └── Min Required Attributes │ ├── School.csv │ ├── Section.csv │ ├── Student.csv │ ├── StudentEnrollment.csv │ ├── Teacher.csv │ └── TeacherRoster.csv ├── CustomSolutions ├── .gitkeep ├── Create-non_SDS_Information_Barriers.ps1 ├── SDS_ADF_ETL_Integrations │ ├── Canvas │ │ ├── Canvas_to_SDS_ADF_template.json │ │ ├── README.md │ │ └── img │ │ │ ├── add_trigger.png │ │ │ ├── deactivate_activity.png │ │ │ ├── debug_dataFlow.png │ │ │ ├── main_pipeline.png │ │ │ ├── new_alert_rule.png │ │ │ ├── new_trigger.png │ │ │ ├── pipeline_run_results.png │ │ │ └── run_pipeline.png │ ├── OneRoster │ │ ├── OneRoster_to_SDS_ADF_Template.json │ │ ├── README.md │ │ └── img │ │ │ ├── add_trigger.png │ │ │ ├── deactivate_activity.png │ │ │ ├── debug_dataFlow.png │ │ │ ├── main_pipeline.png │ │ │ ├── new_alert_rule.png │ │ │ ├── new_trigger.png │ │ │ ├── pipeline_run_results.png │ │ │ ├── refcode_storage.png │ │ │ └── run_pipeline.png │ └── SchoologyCSV │ │ ├── README.md │ │ ├── enumMap.csv │ │ ├── img │ │ ├── add_trigger.png │ │ ├── deactivate_activity.png │ │ ├── main_pipeline.png │ │ ├── new_alert_rule.png │ │ ├── new_trigger.png │ │ ├── pipeline_run_results.png │ │ └── run_pipeline.png │ │ └── schoologyCSV-SDS_ADF_ARM_template.json ├── TeamTemplateExport │ ├── .gitkeep │ ├── App.config │ ├── AzureBlob.cs │ ├── AzureCloudQueue.cs │ ├── DeploymentManifest.cs │ ├── DeploymentManifest.xsd │ ├── DistributeTemplates.csproj │ ├── DistributeTemplates.csproj.user │ ├── Logger.cs │ ├── ManifestPackage.cs │ ├── MigrationApiDemo.cs │ ├── MigrationPackageFile.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SharePointMigrationTarget.cs │ ├── SourceFile.cs │ ├── TestDataProvider.cs │ ├── UpdateMessage.cs │ └── obj │ │ └── Debug │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── TeamTemplateImport │ ├── .gitkeep │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SQL Scripts │ │ ├── TeamsTemplates.Database.sql │ │ ├── dbo.Courses.Table.sql │ │ ├── dbo.Logs.Table.sql │ │ ├── dbo.TemplateChannels.Table.sql │ │ ├── dbo.TemplateClassFiles.Table.sql │ │ ├── dbo.TemplateFiles.Table.sql │ │ └── dbo.Templates.Table.sql │ └── TeamTemplateImport.csproj └── readme ├── EDU Graph - Postman ├── EDU Graph - Assignments.postman_collection.json ├── EDU Graph - Classwork.postman_collection.json ├── EDU Graph - Data API.postman_collection.json ├── EDU Graph - Environment.json ├── EDU Graph - SDS Classic.postman_collection.json └── EDU Graph - industryData - SDS.postman_collection.json ├── EDU Storage Contributions └── Microsoft-EDU-Storage-Entitlements-by-SKU.csv ├── LICENSE.txt ├── LTI Scripts ├── Get-OneDriveLTI-Groups.ps1 ├── IdentifyingClassTeams.md ├── IdentifyingMicrosoft365LTIGroups.md ├── IdentifyingOneDriveGroups.md └── README.md ├── O365-EDU-Tools.yml ├── OneRosterTools └── PostmanCollection │ ├── OneRoster-CredentialsTemplate.postman_environment.json │ ├── SDS V2 OneRoster v1.1-OAuth2.postman_collection.json │ └── readme.md ├── README.md ├── SDS Scripts ├── Archived │ ├── Add-Intune_Licenses.ps1 │ ├── Get-All_SDS_Attributes.ps1 │ ├── Get-All_SDS_Troubleshooting_Attributes.ps1 │ ├── Get-All_Users_With_and_Without_Classroom.ps1 │ ├── MigrateClassGroupsToTeams.ps1 │ ├── Remove-All_Schools.ps1 │ ├── Remove-All_Section_Memberships.ps1 │ ├── Remove-Intune_Licenses.ps1 │ ├── Rename-Expired_Classes.ps1 │ ├── Retire-Classroom_Preview_Sections.ps1 │ ├── Set-Classroom_License_for_All_Users.ps1 │ ├── Set-Classroom_License_for_Some_Users.ps1 │ ├── Unrename-Expired_Classes.ps1 │ └── v2MigrateClassGroupsToTeams.ps1 ├── Block Azure AD Portal │ ├── Block-AzureADPortal_for_everyone_except_a_list_of_admins.ps1 │ ├── Block-AzureADPortal_for_everyone_except_me.ps1 │ └── IntuneforEducationAdmins.csv ├── Block PowerShell │ ├── Block-MS_Graph_module_for_everyone_except_a_list_of_admins.ps1 │ ├── Block-MS_Graph_module_for_everyone_except_me.ps1 │ ├── Block-PowerShell_for_everyone_except_a_list_of_admins.ps1 │ ├── Block-PowerShell_for_everyone_except_me.ps1 │ └── psadmins.csv ├── Connection Scripts │ ├── Connect-Azure_AD_V1.ps1 │ ├── Connect-Azure_AD_V1_and_Exchange_Online.ps1 │ ├── Connect-Azure_AD_V2.ps1 │ ├── Connect-Exchange_Online.ps1 │ ├── Connect-Microsoft_Teams.ps1 │ ├── Install-AAD_Module_and_Sign_in_Assistant.ps1 │ ├── Install-Azure_AD_V2.ps1 │ └── Install-Teams_Module.txt ├── Consent Scripts │ ├── Get-StudentsByLicense.ps1 │ └── Set-MinorWithParentalConsent.ps1 ├── Create-SDS_Information_Barriers.ps1 ├── Email Restrictions │ ├── Export-Class_Membership_for_Restrictions.ps1 │ ├── New-DDL_for_All_Admins.ps1 │ ├── New-DDL_for_All_Students.ps1 │ ├── New-DDL_for_All_Teachers.ps1 │ ├── New-DDL_for_Students_by_Grade.ps1 │ ├── New-Transport_Rule_Inbound.ps1 │ ├── New-Transport_Rule_Outbound.ps1 │ ├── Set-Acceptance_Permissions_All_Admins.ps1 │ ├── Set-Acceptance_Permissions_All_Students.ps1 │ ├── Set-Acceptance_Permissions_All_Teachers.ps1 │ ├── Set-Acceptance_Permissions_SDS_Sections.ps1 │ └── Set-Acceptance_Permissions_Students_by_Grade.ps1 ├── Get-All_SDS_Attributes.ps1 ├── Get-All_SDS_Attributes_NoRosters.ps1 ├── Get-All_SDS_Troubleshooting_Attributes.ps1 ├── Get-All_Schools_and_Memberships.ps1 ├── Get-All_Sections.ps1 ├── Get-All_Sections_and_Membership_Counts.ps1 ├── Get-All_Sections_and_Memberships.ps1 ├── Get-All_Students_and_Teachers.ps1 ├── Get-Guardians.ps1 ├── Get-PowerSchool_API.ps1 ├── Get-SectionUsageReport.ps1 ├── Get-User_Information_Barrier_Segments.ps1 ├── License Scripts │ ├── Add-Intune_Licenses.ps1 │ └── Remove-Intune_Licenses.ps1 ├── MigrateClassGroupsToTeams.ps1 ├── Remove-All_Schools.ps1 ├── Remove-All_Section_Memberships.ps1 ├── Remove-All_Sections.ps1 ├── Remove-Expired_Section_Memberships.ps1 ├── Remove-Expired_Sections.ps1 ├── Remove-SchoolAU_Memberships.ps1 ├── Remove-SchoolSG_Memberships.ps1 ├── Remove-Student_Attributes.ps1 ├── Remove-Unused_Sections.ps1 ├── Rename-Expired_Classes.ps1 ├── Reset-Guardians.ps1 ├── Restore-V1_AnchorID_Attributes.ps1 ├── Set-All_Sections_as_Hidden.ps1 ├── Set-Email_Addresses_Expired.ps1 ├── Set-Expired_Sections_Hidden.ps1 ├── Set-SDS_Attributes_For_Administrative_Units.ps1 ├── Set-SDS_Attributes_For_All_Teachers_Security_Group.ps1 ├── Set-Some_Sections_as_Hidden.ps1 ├── Unrename-Expired_Classes.ps1 ├── Update-AnchorID_Attributes.ps1 └── common.ps1 ├── SDSDataLakeTroubleshooting └── TroubleshootSDSDataLake.pbit ├── SDSProfileManagementDocs ├── README.md ├── api │ ├── educationsynchronizationerrors_get.md │ ├── educationsynchronizationprofile_delete.md │ ├── educationsynchronizationprofile_get.md │ ├── educationsynchronizationprofile_list.md │ ├── educationsynchronizationprofile_pause.md │ ├── educationsynchronizationprofile_post.md │ ├── educationsynchronizationprofile_put.md │ ├── educationsynchronizationprofile_reset.md │ ├── educationsynchronizationprofile_resume.md │ ├── educationsynchronizationprofile_start.md │ ├── educationsynchronizationprofile_uploadurl.md │ └── educationsynchronizationprofilestatus_get.md ├── resources │ ├── educationSynchronizationConnectionSettings.md │ ├── educationSynchronizationOAuth1ConnectionSettings.md │ ├── educationSynchronizationOAuth2ClientCredentialsConnectionSettings.md │ ├── educationcsvdataprovider.md │ ├── educationfilesynchronizationverificationmessage.md │ ├── educationidentitycreationconfiguration.md │ ├── educationidentitydomain.md │ ├── educationidentitymatchingconfiguration.md │ ├── educationidentitymatchingoptions.md │ ├── educationidentitysynchronizationconfiguration.md │ ├── educationonerosterapidataprovider.md │ ├── educationpowerschooldataprovider.md │ ├── educationsynchronizationcustomization.md │ ├── educationsynchronizationcustomizations.md │ ├── educationsynchronizationdataprovider.md │ ├── educationsynchronizationerror.md │ ├── educationsynchronizationlicenseassignment.md │ ├── educationsynchronizationprofile.md │ └── educationsynchronizationprofilestatus.md └── scenarios │ ├── Images │ ├── AddGraphAPI.PNG │ ├── AddPermissions.PNG │ └── Settings.PNG │ ├── create-api-synchronization-profile.md │ ├── create-synchronization-profile.md │ ├── synchronization-profile-api-introduction.md │ ├── troubleshooting-sync-failures.md │ └── update-synchronization-profile.md ├── SECURITY.md └── Teams Scripts ├── Add-GroupOwners-To-Teams.ps1 └── Sync-GroupMembership-To-Team.ps1 /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CSV Samples/SDS Format/100 Users/School.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/100 Users/School.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/100 Users/Section.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/100 Users/Section.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/100 Users/Student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/100 Users/Student.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/100 Users/StudentEnrollment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/100 Users/StudentEnrollment.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/100 Users/Teacher.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/100 Users/Teacher.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/100 Users/TeacherRoster.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/100 Users/TeacherRoster.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/25 Users/School.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/25 Users/School.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/25 Users/Section.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/25 Users/Section.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/25 Users/Student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/25 Users/Student.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/25 Users/StudentEnrollment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/25 Users/StudentEnrollment.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/25 Users/Teacher.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/25 Users/Teacher.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/25 Users/TeacherRoster.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/25 Users/TeacherRoster.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/Min Required Attributes/School.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/Min Required Attributes/School.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/Min Required Attributes/Section.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/Min Required Attributes/Section.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/Min Required Attributes/Student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/Min Required Attributes/Student.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/Min Required Attributes/StudentEnrollment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/Min Required Attributes/StudentEnrollment.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/Min Required Attributes/Teacher.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/Min Required Attributes/Teacher.csv -------------------------------------------------------------------------------- /CSV Samples/SDS Format/Min Required Attributes/TeacherRoster.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS Format/Min Required Attributes/TeacherRoster.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/academicSessions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/academicSessions.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/classes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/classes.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/courses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/courses.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/demographics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/demographics.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/enrollments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/enrollments.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/orgs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/orgs.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/relationships.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/relationships.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/roles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/roles.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/userFlags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/userFlags.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2.1/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2.1/users.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2/classes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2/classes.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2/enrollments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2/enrollments.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2/orgs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2/orgs.csv -------------------------------------------------------------------------------- /CSV Samples/SDS v2/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/SDS v2/users.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/100 Users/School.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/100 Users/School.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/100 Users/Section.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/100 Users/Section.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/100 Users/Student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/100 Users/Student.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/100 Users/StudentEnrollment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/100 Users/StudentEnrollment.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/100 Users/Teacher.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/100 Users/Teacher.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/100 Users/TeacherRoster.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/100 Users/TeacherRoster.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/25 Users/School.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/25 Users/School.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/25 Users/Section.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/25 Users/Section.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/25 Users/Student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/25 Users/Student.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/25 Users/StudentEnrollment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/25 Users/StudentEnrollment.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/25 Users/Teacher.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/25 Users/Teacher.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/25 Users/TeacherRoster.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/25 Users/TeacherRoster.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/Min Required Attributes/School.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/Min Required Attributes/School.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/Min Required Attributes/Section.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/Min Required Attributes/Section.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/Min Required Attributes/Student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/Min Required Attributes/Student.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/Min Required Attributes/StudentEnrollment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/Min Required Attributes/StudentEnrollment.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/Min Required Attributes/Teacher.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/Min Required Attributes/Teacher.csv -------------------------------------------------------------------------------- /CSV Samples/UK Format/Min Required Attributes/TeacherRoster.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CSV Samples/UK Format/Min Required Attributes/TeacherRoster.csv -------------------------------------------------------------------------------- /CustomSolutions/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CustomSolutions/Create-non_SDS_Information_Barriers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/Create-non_SDS_Information_Barriers.ps1 -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/Canvas_to_SDS_ADF_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/Canvas_to_SDS_ADF_template.json -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/README.md -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/add_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/add_trigger.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/deactivate_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/deactivate_activity.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/debug_dataFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/debug_dataFlow.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/main_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/main_pipeline.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/new_alert_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/new_alert_rule.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/new_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/new_trigger.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/pipeline_run_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/pipeline_run_results.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/run_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/Canvas/img/run_pipeline.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/OneRoster_to_SDS_ADF_Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/OneRoster_to_SDS_ADF_Template.json -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/README.md -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/add_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/add_trigger.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/deactivate_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/deactivate_activity.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/debug_dataFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/debug_dataFlow.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/main_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/main_pipeline.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/new_alert_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/new_alert_rule.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/new_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/new_trigger.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/pipeline_run_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/pipeline_run_results.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/refcode_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/refcode_storage.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/run_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/OneRoster/img/run_pipeline.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/README.md -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/enumMap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/enumMap.csv -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/add_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/add_trigger.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/deactivate_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/deactivate_activity.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/main_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/main_pipeline.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/new_alert_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/new_alert_rule.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/new_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/new_trigger.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/pipeline_run_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/pipeline_run_results.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/run_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/img/run_pipeline.png -------------------------------------------------------------------------------- /CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/schoologyCSV-SDS_ADF_ARM_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/SDS_ADF_ETL_Integrations/SchoologyCSV/schoologyCSV-SDS_ADF_ARM_template.json -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/App.config -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/AzureBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/AzureBlob.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/AzureCloudQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/AzureCloudQueue.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/DeploymentManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/DeploymentManifest.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/DeploymentManifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/DeploymentManifest.xsd -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/DistributeTemplates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/DistributeTemplates.csproj -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/DistributeTemplates.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/DistributeTemplates.csproj.user -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/Logger.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/ManifestPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/ManifestPackage.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/MigrationApiDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/MigrationApiDemo.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/MigrationPackageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/MigrationPackageFile.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/Program.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/SharePointMigrationTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/SharePointMigrationTarget.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/SourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/SourceFile.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/TestDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/TestDataProvider.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/UpdateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/UpdateMessage.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateExport/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateExport/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/App.config -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/Program.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/SQL Scripts/TeamsTemplates.Database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/SQL Scripts/TeamsTemplates.Database.sql -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.Courses.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.Courses.Table.sql -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.Logs.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.Logs.Table.sql -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.TemplateChannels.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.TemplateChannels.Table.sql -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.TemplateClassFiles.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.TemplateClassFiles.Table.sql -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.TemplateFiles.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.TemplateFiles.Table.sql -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.Templates.Table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/SQL Scripts/dbo.Templates.Table.sql -------------------------------------------------------------------------------- /CustomSolutions/TeamTemplateImport/TeamTemplateImport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/TeamTemplateImport/TeamTemplateImport.csproj -------------------------------------------------------------------------------- /CustomSolutions/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/CustomSolutions/readme -------------------------------------------------------------------------------- /EDU Graph - Postman/EDU Graph - Assignments.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/EDU Graph - Postman/EDU Graph - Assignments.postman_collection.json -------------------------------------------------------------------------------- /EDU Graph - Postman/EDU Graph - Classwork.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/EDU Graph - Postman/EDU Graph - Classwork.postman_collection.json -------------------------------------------------------------------------------- /EDU Graph - Postman/EDU Graph - Data API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/EDU Graph - Postman/EDU Graph - Data API.postman_collection.json -------------------------------------------------------------------------------- /EDU Graph - Postman/EDU Graph - Environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/EDU Graph - Postman/EDU Graph - Environment.json -------------------------------------------------------------------------------- /EDU Graph - Postman/EDU Graph - SDS Classic.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/EDU Graph - Postman/EDU Graph - SDS Classic.postman_collection.json -------------------------------------------------------------------------------- /EDU Graph - Postman/EDU Graph - industryData - SDS.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/EDU Graph - Postman/EDU Graph - industryData - SDS.postman_collection.json -------------------------------------------------------------------------------- /EDU Storage Contributions/Microsoft-EDU-Storage-Entitlements-by-SKU.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/EDU Storage Contributions/Microsoft-EDU-Storage-Entitlements-by-SKU.csv -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LTI Scripts/Get-OneDriveLTI-Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/LTI Scripts/Get-OneDriveLTI-Groups.ps1 -------------------------------------------------------------------------------- /LTI Scripts/IdentifyingClassTeams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/LTI Scripts/IdentifyingClassTeams.md -------------------------------------------------------------------------------- /LTI Scripts/IdentifyingMicrosoft365LTIGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/LTI Scripts/IdentifyingMicrosoft365LTIGroups.md -------------------------------------------------------------------------------- /LTI Scripts/IdentifyingOneDriveGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/LTI Scripts/IdentifyingOneDriveGroups.md -------------------------------------------------------------------------------- /LTI Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/LTI Scripts/README.md -------------------------------------------------------------------------------- /O365-EDU-Tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/O365-EDU-Tools.yml -------------------------------------------------------------------------------- /OneRosterTools/PostmanCollection/OneRoster-CredentialsTemplate.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/OneRosterTools/PostmanCollection/OneRoster-CredentialsTemplate.postman_environment.json -------------------------------------------------------------------------------- /OneRosterTools/PostmanCollection/SDS V2 OneRoster v1.1-OAuth2.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/OneRosterTools/PostmanCollection/SDS V2 OneRoster v1.1-OAuth2.postman_collection.json -------------------------------------------------------------------------------- /OneRosterTools/PostmanCollection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/OneRosterTools/PostmanCollection/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/README.md -------------------------------------------------------------------------------- /SDS Scripts/Archived/Add-Intune_Licenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Add-Intune_Licenses.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Get-All_SDS_Attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Get-All_SDS_Attributes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Get-All_SDS_Troubleshooting_Attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Get-All_SDS_Troubleshooting_Attributes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Get-All_Users_With_and_Without_Classroom.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Get-All_Users_With_and_Without_Classroom.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/MigrateClassGroupsToTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/MigrateClassGroupsToTeams.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Remove-All_Schools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Remove-All_Schools.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Remove-All_Section_Memberships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Remove-All_Section_Memberships.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Remove-Intune_Licenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Remove-Intune_Licenses.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Rename-Expired_Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Rename-Expired_Classes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Retire-Classroom_Preview_Sections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Retire-Classroom_Preview_Sections.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Set-Classroom_License_for_All_Users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Set-Classroom_License_for_All_Users.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Set-Classroom_License_for_Some_Users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Set-Classroom_License_for_Some_Users.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/Unrename-Expired_Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/Unrename-Expired_Classes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Archived/v2MigrateClassGroupsToTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Archived/v2MigrateClassGroupsToTeams.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Block Azure AD Portal/Block-AzureADPortal_for_everyone_except_a_list_of_admins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block Azure AD Portal/Block-AzureADPortal_for_everyone_except_a_list_of_admins.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Block Azure AD Portal/Block-AzureADPortal_for_everyone_except_me.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block Azure AD Portal/Block-AzureADPortal_for_everyone_except_me.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Block Azure AD Portal/IntuneforEducationAdmins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block Azure AD Portal/IntuneforEducationAdmins.csv -------------------------------------------------------------------------------- /SDS Scripts/Block PowerShell/Block-MS_Graph_module_for_everyone_except_a_list_of_admins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block PowerShell/Block-MS_Graph_module_for_everyone_except_a_list_of_admins.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Block PowerShell/Block-MS_Graph_module_for_everyone_except_me.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block PowerShell/Block-MS_Graph_module_for_everyone_except_me.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Block PowerShell/Block-PowerShell_for_everyone_except_a_list_of_admins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block PowerShell/Block-PowerShell_for_everyone_except_a_list_of_admins.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Block PowerShell/Block-PowerShell_for_everyone_except_me.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block PowerShell/Block-PowerShell_for_everyone_except_me.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Block PowerShell/psadmins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Block PowerShell/psadmins.csv -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Connect-Azure_AD_V1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Connect-Azure_AD_V1.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Connect-Azure_AD_V1_and_Exchange_Online.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Connect-Azure_AD_V1_and_Exchange_Online.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Connect-Azure_AD_V2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Connect-Azure_AD_V2.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Connect-Exchange_Online.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Connect-Exchange_Online.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Connect-Microsoft_Teams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Connect-Microsoft_Teams.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Install-AAD_Module_and_Sign_in_Assistant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Install-AAD_Module_and_Sign_in_Assistant.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Install-Azure_AD_V2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Install-Azure_AD_V2.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Connection Scripts/Install-Teams_Module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Connection Scripts/Install-Teams_Module.txt -------------------------------------------------------------------------------- /SDS Scripts/Consent Scripts/Get-StudentsByLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Consent Scripts/Get-StudentsByLicense.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Consent Scripts/Set-MinorWithParentalConsent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Consent Scripts/Set-MinorWithParentalConsent.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Create-SDS_Information_Barriers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Create-SDS_Information_Barriers.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/Export-Class_Membership_for_Restrictions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/Export-Class_Membership_for_Restrictions.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/New-DDL_for_All_Admins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/New-DDL_for_All_Admins.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/New-DDL_for_All_Students.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/New-DDL_for_All_Students.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/New-DDL_for_All_Teachers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/New-DDL_for_All_Teachers.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/New-DDL_for_Students_by_Grade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/New-DDL_for_Students_by_Grade.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/New-Transport_Rule_Inbound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/New-Transport_Rule_Inbound.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/New-Transport_Rule_Outbound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/New-Transport_Rule_Outbound.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_All_Admins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_All_Admins.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_All_Students.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_All_Students.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_All_Teachers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_All_Teachers.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_SDS_Sections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_SDS_Sections.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_Students_by_Grade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Email Restrictions/Set-Acceptance_Permissions_Students_by_Grade.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_SDS_Attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_SDS_Attributes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_SDS_Attributes_NoRosters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_SDS_Attributes_NoRosters.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_SDS_Troubleshooting_Attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_SDS_Troubleshooting_Attributes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_Schools_and_Memberships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_Schools_and_Memberships.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_Sections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_Sections.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_Sections_and_Membership_Counts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_Sections_and_Membership_Counts.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_Sections_and_Memberships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_Sections_and_Memberships.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-All_Students_and_Teachers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-All_Students_and_Teachers.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-Guardians.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-Guardians.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-PowerSchool_API.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-PowerSchool_API.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-SectionUsageReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-SectionUsageReport.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Get-User_Information_Barrier_Segments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Get-User_Information_Barrier_Segments.ps1 -------------------------------------------------------------------------------- /SDS Scripts/License Scripts/Add-Intune_Licenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/License Scripts/Add-Intune_Licenses.ps1 -------------------------------------------------------------------------------- /SDS Scripts/License Scripts/Remove-Intune_Licenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/License Scripts/Remove-Intune_Licenses.ps1 -------------------------------------------------------------------------------- /SDS Scripts/MigrateClassGroupsToTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/MigrateClassGroupsToTeams.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-All_Schools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-All_Schools.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-All_Section_Memberships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-All_Section_Memberships.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-All_Sections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-All_Sections.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-Expired_Section_Memberships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-Expired_Section_Memberships.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-Expired_Sections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-Expired_Sections.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-SchoolAU_Memberships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-SchoolAU_Memberships.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-SchoolSG_Memberships.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-SchoolSG_Memberships.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-Student_Attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-Student_Attributes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Remove-Unused_Sections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Remove-Unused_Sections.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Rename-Expired_Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Rename-Expired_Classes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Reset-Guardians.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Reset-Guardians.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Restore-V1_AnchorID_Attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Restore-V1_AnchorID_Attributes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Set-All_Sections_as_Hidden.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Set-All_Sections_as_Hidden.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Set-Email_Addresses_Expired.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Set-Email_Addresses_Expired.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Set-Expired_Sections_Hidden.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Set-Expired_Sections_Hidden.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Set-SDS_Attributes_For_Administrative_Units.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Set-SDS_Attributes_For_Administrative_Units.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Set-SDS_Attributes_For_All_Teachers_Security_Group.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Set-SDS_Attributes_For_All_Teachers_Security_Group.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Set-Some_Sections_as_Hidden.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Set-Some_Sections_as_Hidden.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Unrename-Expired_Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Unrename-Expired_Classes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/Update-AnchorID_Attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/Update-AnchorID_Attributes.ps1 -------------------------------------------------------------------------------- /SDS Scripts/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDS Scripts/common.ps1 -------------------------------------------------------------------------------- /SDSDataLakeTroubleshooting/TroubleshootSDSDataLake.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSDataLakeTroubleshooting/TroubleshootSDSDataLake.pbit -------------------------------------------------------------------------------- /SDSProfileManagementDocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/README.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationerrors_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationerrors_get.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_delete.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_get.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_list.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_pause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_pause.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_post.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_put.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_put.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_reset.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_resume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_resume.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_start.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofile_uploadurl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofile_uploadurl.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/api/educationsynchronizationprofilestatus_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/api/educationsynchronizationprofilestatus_get.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationSynchronizationConnectionSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationSynchronizationConnectionSettings.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationSynchronizationOAuth1ConnectionSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationSynchronizationOAuth1ConnectionSettings.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationSynchronizationOAuth2ClientCredentialsConnectionSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationSynchronizationOAuth2ClientCredentialsConnectionSettings.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationcsvdataprovider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationcsvdataprovider.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationfilesynchronizationverificationmessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationfilesynchronizationverificationmessage.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationidentitycreationconfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationidentitycreationconfiguration.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationidentitydomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationidentitydomain.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationidentitymatchingconfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationidentitymatchingconfiguration.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationidentitymatchingoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationidentitymatchingoptions.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationidentitysynchronizationconfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationidentitysynchronizationconfiguration.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationonerosterapidataprovider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationonerosterapidataprovider.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationpowerschooldataprovider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationpowerschooldataprovider.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationsynchronizationcustomization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationsynchronizationcustomization.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationsynchronizationcustomizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationsynchronizationcustomizations.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationsynchronizationdataprovider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationsynchronizationdataprovider.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationsynchronizationerror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationsynchronizationerror.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationsynchronizationlicenseassignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationsynchronizationlicenseassignment.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationsynchronizationprofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationsynchronizationprofile.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/resources/educationsynchronizationprofilestatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/resources/educationsynchronizationprofilestatus.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/Images/AddGraphAPI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/Images/AddGraphAPI.PNG -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/Images/AddPermissions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/Images/AddPermissions.PNG -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/Images/Settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/Images/Settings.PNG -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/create-api-synchronization-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/create-api-synchronization-profile.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/create-synchronization-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/create-synchronization-profile.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/synchronization-profile-api-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/synchronization-profile-api-introduction.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/troubleshooting-sync-failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/troubleshooting-sync-failures.md -------------------------------------------------------------------------------- /SDSProfileManagementDocs/scenarios/update-synchronization-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SDSProfileManagementDocs/scenarios/update-synchronization-profile.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Teams Scripts/Add-GroupOwners-To-Teams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/Teams Scripts/Add-GroupOwners-To-Teams.ps1 -------------------------------------------------------------------------------- /Teams Scripts/Sync-GroupMembership-To-Team.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/O365-EDU-Tools/HEAD/Teams Scripts/Sync-GroupMembership-To-Team.ps1 --------------------------------------------------------------------------------