├── .gitignore ├── AdvancedThreatProtection ├── ATPConfig.ps1 └── README.md ├── DataLossPrevention ├── DLPConfig-v1.2_OLD_.ps1 ├── DLPConfig.ps1 └── README.md ├── ExampleMSBrandingCSS.css ├── ExportPolicy.ps1 ├── GDAPChecker.ps1 ├── LICENSE ├── Launcher.ps1 ├── M365ModuleConnector ├── M365ModuleConnector.ps1 └── Readme.md ├── M365ModuleUpdater ├── M365ModuleUpdater.ps1 └── README.md ├── README.md └── TenantExchangeConfig ├── README.md └── TenantExchangeConfig.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | **.json 2 | **.log -------------------------------------------------------------------------------- /AdvancedThreatProtection/ATPConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/AdvancedThreatProtection/ATPConfig.ps1 -------------------------------------------------------------------------------- /AdvancedThreatProtection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/AdvancedThreatProtection/README.md -------------------------------------------------------------------------------- /DataLossPrevention/DLPConfig-v1.2_OLD_.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/DataLossPrevention/DLPConfig-v1.2_OLD_.ps1 -------------------------------------------------------------------------------- /DataLossPrevention/DLPConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/DataLossPrevention/DLPConfig.ps1 -------------------------------------------------------------------------------- /DataLossPrevention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/DataLossPrevention/README.md -------------------------------------------------------------------------------- /ExampleMSBrandingCSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/ExampleMSBrandingCSS.css -------------------------------------------------------------------------------- /ExportPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/ExportPolicy.ps1 -------------------------------------------------------------------------------- /GDAPChecker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/GDAPChecker.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /Launcher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/Launcher.ps1 -------------------------------------------------------------------------------- /M365ModuleConnector/M365ModuleConnector.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/M365ModuleConnector/M365ModuleConnector.ps1 -------------------------------------------------------------------------------- /M365ModuleConnector/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/M365ModuleConnector/Readme.md -------------------------------------------------------------------------------- /M365ModuleUpdater/M365ModuleUpdater.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/M365ModuleUpdater/M365ModuleUpdater.ps1 -------------------------------------------------------------------------------- /M365ModuleUpdater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/M365ModuleUpdater/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/README.md -------------------------------------------------------------------------------- /TenantExchangeConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/TenantExchangeConfig/README.md -------------------------------------------------------------------------------- /TenantExchangeConfig/TenantExchangeConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exploitacious/Auto-M365-TenantMaster/HEAD/TenantExchangeConfig/TenantExchangeConfig.ps1 --------------------------------------------------------------------------------