├── .github └── CODEOWNERS ├── CONTRIBUTING.md ├── DISCLAIMER.md ├── LICENSE ├── README.md ├── REFS.md ├── example_log_data ├── dlp_log_gathered_by_powershell.txt └── inbound_outbound_message_trace.md ├── media ├── EES-2018-Changes.pdf ├── EMS_Education_Licensing_(Simple)_(Square).png ├── Microsoft_365_Education_on_a_Page(cropped_resized).png ├── O365_Component_Map.png ├── Office_365_Education.png └── screencapture-docs-microsoft-en-us-office365-servicedescriptions-office-365-platform-service-description-microsoft-365-education-2018-11-29-13_23_26.png └── source ├── 0_sample_hello_world ├── README.md └── hello_world.ps1 ├── CSU_EO_Log_Pull ├── .gitattributes ├── .gitignore ├── ExchangeOnlineLogPull.sln ├── ExchangeOnlineLogPull │ ├── App.config │ ├── ExchangeOnlineLogPull.csproj │ ├── FodyWeavers.xml │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── README.md ├── CSU_Log_Pull_Library ├── .gitattributes ├── .gitignore ├── ISOLogPullLibrary.sln ├── ISOLogPullLibrary │ ├── AppOptions.cs │ ├── Authentication.cs │ ├── CommandLineParser.cs │ ├── ConsoleSpinner.cs │ ├── FileCache.cs │ ├── ISOLogPullLibrary.csproj │ ├── LogPull.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── README.md └── TestApplication │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TestApplication.csproj │ └── packages.config ├── MessageTraceLogGatherer ├── Authentication.json ├── MessageTraceConfiguration.json ├── README.md └── getmessagetracelogs.ps1 ├── O365_Clear_Forwarding ├── O365_Clear_Forwarding.ps1 └── README.md ├── O365_Find_Forwarding_Duplicates ├── O365_Find_Forwarding_Duplicates.ps1 └── README.md ├── O365_Get_InboxRules ├── O365_Get_InboxRules.ps1 └── README.md ├── O365_Get_Last_PW_Reset ├── O365_Get_Last_PW_Reset.ps1 └── README.md ├── O365_Get_Mailbox_Forwarding ├── O365_Get_Mailbox_Forwarding.ps1 └── README.md ├── O365_Get_Message_Trace ├── O365_Get_Message_Trace.ps1 └── README.md ├── O365_IR_Toolbox ├── O365_IR_Toolbox.ps1 └── README.md ├── README.md └── TEMPLATE_for_resource_README.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dodpears @mdavis332 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /REFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/REFS.md -------------------------------------------------------------------------------- /example_log_data/dlp_log_gathered_by_powershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/example_log_data/dlp_log_gathered_by_powershell.txt -------------------------------------------------------------------------------- /example_log_data/inbound_outbound_message_trace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/example_log_data/inbound_outbound_message_trace.md -------------------------------------------------------------------------------- /media/EES-2018-Changes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/media/EES-2018-Changes.pdf -------------------------------------------------------------------------------- /media/EMS_Education_Licensing_(Simple)_(Square).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/media/EMS_Education_Licensing_(Simple)_(Square).png -------------------------------------------------------------------------------- /media/Microsoft_365_Education_on_a_Page(cropped_resized).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/media/Microsoft_365_Education_on_a_Page(cropped_resized).png -------------------------------------------------------------------------------- /media/O365_Component_Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/media/O365_Component_Map.png -------------------------------------------------------------------------------- /media/Office_365_Education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/media/Office_365_Education.png -------------------------------------------------------------------------------- /media/screencapture-docs-microsoft-en-us-office365-servicedescriptions-office-365-platform-service-description-microsoft-365-education-2018-11-29-13_23_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/media/screencapture-docs-microsoft-en-us-office365-servicedescriptions-office-365-platform-service-description-microsoft-365-education-2018-11-29-13_23_26.png -------------------------------------------------------------------------------- /source/0_sample_hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/0_sample_hello_world/README.md -------------------------------------------------------------------------------- /source/0_sample_hello_world/hello_world.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello, World!" -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/.gitattributes -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/.gitignore -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/ExchangeOnlineLogPull.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/ExchangeOnlineLogPull.sln -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/App.config -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/ExchangeOnlineLogPull.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/ExchangeOnlineLogPull.csproj -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/FodyWeavers.xml -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/Program.cs -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/ExchangeOnlineLogPull/packages.config -------------------------------------------------------------------------------- /source/CSU_EO_Log_Pull/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_EO_Log_Pull/README.md -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/.gitattributes -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/.gitignore -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary.sln -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/AppOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/AppOptions.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/Authentication.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/CommandLineParser.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/ConsoleSpinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/ConsoleSpinner.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/FileCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/FileCache.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/ISOLogPullLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/ISOLogPullLibrary.csproj -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/LogPull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/LogPull.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/ISOLogPullLibrary/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/ISOLogPullLibrary/packages.config -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/README.md -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/TestApplication/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/TestApplication/App.config -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/TestApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/TestApplication/Program.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/TestApplication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/TestApplication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/TestApplication/TestApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/TestApplication/TestApplication.csproj -------------------------------------------------------------------------------- /source/CSU_Log_Pull_Library/TestApplication/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/CSU_Log_Pull_Library/TestApplication/packages.config -------------------------------------------------------------------------------- /source/MessageTraceLogGatherer/Authentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/MessageTraceLogGatherer/Authentication.json -------------------------------------------------------------------------------- /source/MessageTraceLogGatherer/MessageTraceConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/MessageTraceLogGatherer/MessageTraceConfiguration.json -------------------------------------------------------------------------------- /source/MessageTraceLogGatherer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/MessageTraceLogGatherer/README.md -------------------------------------------------------------------------------- /source/MessageTraceLogGatherer/getmessagetracelogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/MessageTraceLogGatherer/getmessagetracelogs.ps1 -------------------------------------------------------------------------------- /source/O365_Clear_Forwarding/O365_Clear_Forwarding.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Clear_Forwarding/O365_Clear_Forwarding.ps1 -------------------------------------------------------------------------------- /source/O365_Clear_Forwarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Clear_Forwarding/README.md -------------------------------------------------------------------------------- /source/O365_Find_Forwarding_Duplicates/O365_Find_Forwarding_Duplicates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Find_Forwarding_Duplicates/O365_Find_Forwarding_Duplicates.ps1 -------------------------------------------------------------------------------- /source/O365_Find_Forwarding_Duplicates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Find_Forwarding_Duplicates/README.md -------------------------------------------------------------------------------- /source/O365_Get_InboxRules/O365_Get_InboxRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_InboxRules/O365_Get_InboxRules.ps1 -------------------------------------------------------------------------------- /source/O365_Get_InboxRules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_InboxRules/README.md -------------------------------------------------------------------------------- /source/O365_Get_Last_PW_Reset/O365_Get_Last_PW_Reset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_Last_PW_Reset/O365_Get_Last_PW_Reset.ps1 -------------------------------------------------------------------------------- /source/O365_Get_Last_PW_Reset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_Last_PW_Reset/README.md -------------------------------------------------------------------------------- /source/O365_Get_Mailbox_Forwarding/O365_Get_Mailbox_Forwarding.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_Mailbox_Forwarding/O365_Get_Mailbox_Forwarding.ps1 -------------------------------------------------------------------------------- /source/O365_Get_Mailbox_Forwarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_Mailbox_Forwarding/README.md -------------------------------------------------------------------------------- /source/O365_Get_Message_Trace/O365_Get_Message_Trace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_Message_Trace/O365_Get_Message_Trace.ps1 -------------------------------------------------------------------------------- /source/O365_Get_Message_Trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_Get_Message_Trace/README.md -------------------------------------------------------------------------------- /source/O365_IR_Toolbox/O365_IR_Toolbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_IR_Toolbox/O365_IR_Toolbox.ps1 -------------------------------------------------------------------------------- /source/O365_IR_Toolbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/O365_IR_Toolbox/README.md -------------------------------------------------------------------------------- /source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/README.md -------------------------------------------------------------------------------- /source/TEMPLATE_for_resource_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renisac/O365-Management-and-Log-Scripts/HEAD/source/TEMPLATE_for_resource_README.md --------------------------------------------------------------------------------