├── .gitignore ├── ActiveDirectory ├── ADSI.ps1 ├── ActiveDirectory.md ├── CheckDomainControllerPorts.ps1 └── Export-GPLinks.ps1 ├── Azure ├── AIShell │ ├── Deploy.ps1 │ └── main.bicep ├── AutomationAccount_AZ.ps1 ├── AutomationAccount_ArcHybridWorker.ps1 ├── AutomationAccount_DeployRunbook.ps1 ├── AutomationAccount_M365LicenseCompare.ps1 ├── AutomationAccount_UpdateGraphModules.ps1 ├── AutomationAccount_UpdateGraphModulesV2.ps1 ├── AutomationAccount_UpdatePSModules.ps1 ├── AutomationAccount_UpdatePSModulesV2.ps1 ├── Cleanup-AZModules.ps1 ├── Demo01-SQLDB-Az.ps1 ├── Demo02-SQLDB-AzCli.ps1 ├── Demo03-ResourceGroup-Parameters.json ├── Demo03-ResourceGroup-Template.json ├── Demo03-SQLDB-ARM.ps1 ├── Demo03-SQLDB-Parameters.json ├── Demo03-SQLDB-Template.json ├── Demo04-ResourceGroup-Parameters.json ├── Demo04-ResourceGroup-Template.bicep ├── Demo04-ResourceGroup-Template.json ├── Demo04-SQLDB-Biceps.ps1 ├── Demo04-SQLDB-Parameters.json ├── Demo04-SQLDB-Template.bicep ├── Demo04-SQLDB-Template.json ├── Demo04-SQLDB-Template2.bicep ├── ReadWriteStorageQueue.ps1 └── Update-AZFunctionExtensionBundle.ps1 ├── CheckPSModules.ps1 ├── EntraID ├── AADLogAnalytics.kql ├── AADSigninsWithPowerShell.ps1 ├── Check-O365GroupAllowToAddGuests.ps1 ├── CreateAADApp-MgGraph.ps1 ├── DeleteStaleDevices.ps1 ├── DocumentConditionalAccessPolicies.ps1 ├── ExtractGUIDandLicensesFromWebsite.ps1 ├── List-Fido2Keys.ps1 ├── M365LicenseCheckV2.ps1 ├── Microsoft.Graph_HowToStart.ps1 ├── MicrosoftGraph_ProvisioningError.ps1 ├── ReportMFAAuthenticatorPerUser.ps1 └── VerifiedID_AdminApi.ps1 ├── Exchange ├── CheckPendingReboot.ps1 ├── DisableExchangeServices.ps1 ├── EnableExchangeServices.ps1 ├── EnableTLS1.2.ps1 ├── ExchangeHTTPHealthCheck.ps1 ├── ExchangeSchemaVersion.ps1 ├── Exchange_Commands.ps1 ├── ExportMailboxAndADAttributes.ps1 ├── Get-SMTPCertificate.ps1 ├── RenameUPN.ps1 └── RenewExchangeCertificateLetsEncrypt.ps1 ├── ExchangeOnline ├── .gitignore ├── CheckDNSDomain.ps1 ├── CheckPlusEmailAddresses.ps1 ├── EOPAdvancedHunting │ ├── AdvancedHunting.kql │ ├── AdvancedHunting.ps1 │ ├── AdvancedHuntingWithPS.ps1 │ └── EOP_Unsigned.zip ├── EXOAutomationAccountManagedIdentity.ps1 ├── EXOPermissions.md ├── FixWorkHoursVersion1-EWS-OAUTH2.ps1 ├── GraphAPI │ ├── Cleanup-GraphModules.ps1 │ ├── DemoAttachment.docx │ ├── ExOGraphAPI.ps1 │ ├── ExOMgGraphApi.ps1 │ ├── Get-SheduleDemo.ps1 │ ├── IMAPPOP3_OAUTH2.ps1 │ ├── IMAP_DelegatedUser.ps1 │ ├── Search-AuditlogGraph.ps1 │ ├── SendMailAzureAtomation.ps1 │ └── SimpleGraphSendMail.ps1 ├── MTA-STS_TemplateStaticWebApp │ ├── DemoPipeline.yaml │ ├── README.md │ ├── deployment │ │ └── DeployStaticWebApp.ps1 │ └── root │ │ ├── .well-known │ │ └── mta-sts.txt │ │ ├── 404.html │ │ ├── index.html │ │ └── staticwebapp.config.json ├── MailUserFromCSV │ ├── .gitignore │ ├── CreateMailuserFromCSV.ps1 │ └── Mailuser.csv ├── MigrationCheck.ps1 ├── MoveRequest_Report.ps1 ├── ReportEmailAddressesPerDomain.ps1 ├── SearchAuditLog.ps1 └── UserMailboxWithoutExchangeLicense.ps1 ├── Icewolf.EXO.SpamAnalyze ├── Icewolf.EXO.SpamAnalyze.psd1 ├── Icewolf.EXO.SpamAnalyze.psm1 ├── Icewolf.EXO.SpamAnalyze_01.jpg ├── Icewolf.EXO.SpamAnalyze_02.jpg ├── Icewolf.EXO.SpamAnalyze_03.jpg ├── Icewolf.EXO.SpamAnalyze_04.jpg └── readme.md ├── Icewolf.Exchange.MAPI ├── Add-MAPIPermissions.ps1 ├── Export-MAPIPermissions.ps1 ├── Icewolf.Exchange.MAPI.psd1 ├── Icewolf.Exchange.MAPI.psm1 ├── Icewolf.Exchange.MAPI_01.jpg ├── Icewolf.Exchange.MAPI_02.jpg ├── Icewolf.Exchange.MAPI_03.jpg ├── Icewolf.Exchange.MAPI_04.jpg ├── Icewolf.Exchange.MAPI_05.jpg ├── Icewolf.Exchange.MAPI_06.jpg ├── Icewolf.Exchange.MAPI_07.jpg ├── Icewolf.Exchange.MAPI_08.jpg ├── Remove-MAPIPermissions.ps1 └── readme.md ├── Icewolf.PIM ├── Icewolf.PIM.psd1 └── Icewolf.PIM.psm1 ├── Mailprotection ├── Get-Mailprotection.ps1 ├── Get-Mailprotection01.jpg ├── Get-Mailprotection02.jpg ├── Get-Mailprotection03.jpg ├── Get-Mailprotection04.jpg ├── Get-Mailprotection_1.13.ps1 └── Readme.md ├── MicrosoftTeams ├── AzureAutomation_MicrosoftTeams_ManagedIdentity.ps1 ├── CheckTeamsClientUpdate.ps1 ├── Create-TeamsHolidays2023-CH.ps1 ├── CreateAutoAttendantandCallQueue.ps1 ├── Get-AllCallQueueAgents.ps1 ├── Get-TeamsChannelEmailaddresses.ps1 ├── Report-CsOnlineVoiceMailUserSettings.ps1 ├── Set-TeamsVoiceMailPromt.ps1 ├── TeamsAppAuthentication.ps1 ├── TeamsClearLocalCache.ps1 └── TeamsPhoneNumber.ps1 ├── PowerShell ├── ConvertHTMLToMarkdownForHugo.ps1 ├── PowerShellBasics.md └── crescendo │ ├── Get-Ipconfig.crescendo.json │ ├── Ipconfig.psd1 │ ├── Ipconfig.psm1 │ └── crescendo.md ├── Presentations ├── Cloud8_SwissDomainSecurityReportQ42023_20240112.pdf ├── EXUSG_2023_Q1.pdf └── EXUSG_2023_Q3_EmailSecurity.pdf └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | *.log 3 | .vscode/settings.json 4 | -------------------------------------------------------------------------------- /ActiveDirectory/ADSI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ActiveDirectory/ADSI.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/ActiveDirectory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ActiveDirectory/ActiveDirectory.md -------------------------------------------------------------------------------- /ActiveDirectory/CheckDomainControllerPorts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ActiveDirectory/CheckDomainControllerPorts.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Export-GPLinks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ActiveDirectory/Export-GPLinks.ps1 -------------------------------------------------------------------------------- /Azure/AIShell/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AIShell/Deploy.ps1 -------------------------------------------------------------------------------- /Azure/AIShell/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AIShell/main.bicep -------------------------------------------------------------------------------- /Azure/AutomationAccount_AZ.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_AZ.ps1 -------------------------------------------------------------------------------- /Azure/AutomationAccount_ArcHybridWorker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_ArcHybridWorker.ps1 -------------------------------------------------------------------------------- /Azure/AutomationAccount_DeployRunbook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_DeployRunbook.ps1 -------------------------------------------------------------------------------- /Azure/AutomationAccount_M365LicenseCompare.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_M365LicenseCompare.ps1 -------------------------------------------------------------------------------- /Azure/AutomationAccount_UpdateGraphModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_UpdateGraphModules.ps1 -------------------------------------------------------------------------------- /Azure/AutomationAccount_UpdateGraphModulesV2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_UpdateGraphModulesV2.ps1 -------------------------------------------------------------------------------- /Azure/AutomationAccount_UpdatePSModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_UpdatePSModules.ps1 -------------------------------------------------------------------------------- /Azure/AutomationAccount_UpdatePSModulesV2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/AutomationAccount_UpdatePSModulesV2.ps1 -------------------------------------------------------------------------------- /Azure/Cleanup-AZModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Cleanup-AZModules.ps1 -------------------------------------------------------------------------------- /Azure/Demo01-SQLDB-Az.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo01-SQLDB-Az.ps1 -------------------------------------------------------------------------------- /Azure/Demo02-SQLDB-AzCli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo02-SQLDB-AzCli.ps1 -------------------------------------------------------------------------------- /Azure/Demo03-ResourceGroup-Parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo03-ResourceGroup-Parameters.json -------------------------------------------------------------------------------- /Azure/Demo03-ResourceGroup-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo03-ResourceGroup-Template.json -------------------------------------------------------------------------------- /Azure/Demo03-SQLDB-ARM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo03-SQLDB-ARM.ps1 -------------------------------------------------------------------------------- /Azure/Demo03-SQLDB-Parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo03-SQLDB-Parameters.json -------------------------------------------------------------------------------- /Azure/Demo03-SQLDB-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo03-SQLDB-Template.json -------------------------------------------------------------------------------- /Azure/Demo04-ResourceGroup-Parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-ResourceGroup-Parameters.json -------------------------------------------------------------------------------- /Azure/Demo04-ResourceGroup-Template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-ResourceGroup-Template.bicep -------------------------------------------------------------------------------- /Azure/Demo04-ResourceGroup-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-ResourceGroup-Template.json -------------------------------------------------------------------------------- /Azure/Demo04-SQLDB-Biceps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-SQLDB-Biceps.ps1 -------------------------------------------------------------------------------- /Azure/Demo04-SQLDB-Parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-SQLDB-Parameters.json -------------------------------------------------------------------------------- /Azure/Demo04-SQLDB-Template.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-SQLDB-Template.bicep -------------------------------------------------------------------------------- /Azure/Demo04-SQLDB-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-SQLDB-Template.json -------------------------------------------------------------------------------- /Azure/Demo04-SQLDB-Template2.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Demo04-SQLDB-Template2.bicep -------------------------------------------------------------------------------- /Azure/ReadWriteStorageQueue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/ReadWriteStorageQueue.ps1 -------------------------------------------------------------------------------- /Azure/Update-AZFunctionExtensionBundle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Azure/Update-AZFunctionExtensionBundle.ps1 -------------------------------------------------------------------------------- /CheckPSModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/CheckPSModules.ps1 -------------------------------------------------------------------------------- /EntraID/AADLogAnalytics.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/AADLogAnalytics.kql -------------------------------------------------------------------------------- /EntraID/AADSigninsWithPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/AADSigninsWithPowerShell.ps1 -------------------------------------------------------------------------------- /EntraID/Check-O365GroupAllowToAddGuests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/Check-O365GroupAllowToAddGuests.ps1 -------------------------------------------------------------------------------- /EntraID/CreateAADApp-MgGraph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/CreateAADApp-MgGraph.ps1 -------------------------------------------------------------------------------- /EntraID/DeleteStaleDevices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/DeleteStaleDevices.ps1 -------------------------------------------------------------------------------- /EntraID/DocumentConditionalAccessPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/DocumentConditionalAccessPolicies.ps1 -------------------------------------------------------------------------------- /EntraID/ExtractGUIDandLicensesFromWebsite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/ExtractGUIDandLicensesFromWebsite.ps1 -------------------------------------------------------------------------------- /EntraID/List-Fido2Keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/List-Fido2Keys.ps1 -------------------------------------------------------------------------------- /EntraID/M365LicenseCheckV2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/M365LicenseCheckV2.ps1 -------------------------------------------------------------------------------- /EntraID/Microsoft.Graph_HowToStart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/Microsoft.Graph_HowToStart.ps1 -------------------------------------------------------------------------------- /EntraID/MicrosoftGraph_ProvisioningError.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/MicrosoftGraph_ProvisioningError.ps1 -------------------------------------------------------------------------------- /EntraID/ReportMFAAuthenticatorPerUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/ReportMFAAuthenticatorPerUser.ps1 -------------------------------------------------------------------------------- /EntraID/VerifiedID_AdminApi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/EntraID/VerifiedID_AdminApi.ps1 -------------------------------------------------------------------------------- /Exchange/CheckPendingReboot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/CheckPendingReboot.ps1 -------------------------------------------------------------------------------- /Exchange/DisableExchangeServices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/DisableExchangeServices.ps1 -------------------------------------------------------------------------------- /Exchange/EnableExchangeServices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/EnableExchangeServices.ps1 -------------------------------------------------------------------------------- /Exchange/EnableTLS1.2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/EnableTLS1.2.ps1 -------------------------------------------------------------------------------- /Exchange/ExchangeHTTPHealthCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/ExchangeHTTPHealthCheck.ps1 -------------------------------------------------------------------------------- /Exchange/ExchangeSchemaVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/ExchangeSchemaVersion.ps1 -------------------------------------------------------------------------------- /Exchange/Exchange_Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/Exchange_Commands.ps1 -------------------------------------------------------------------------------- /Exchange/ExportMailboxAndADAttributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/ExportMailboxAndADAttributes.ps1 -------------------------------------------------------------------------------- /Exchange/Get-SMTPCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/Get-SMTPCertificate.ps1 -------------------------------------------------------------------------------- /Exchange/RenameUPN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/RenameUPN.ps1 -------------------------------------------------------------------------------- /Exchange/RenewExchangeCertificateLetsEncrypt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Exchange/RenewExchangeCertificateLetsEncrypt.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv -------------------------------------------------------------------------------- /ExchangeOnline/CheckDNSDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/CheckDNSDomain.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/CheckPlusEmailAddresses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/CheckPlusEmailAddresses.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/EOPAdvancedHunting/AdvancedHunting.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/EOPAdvancedHunting/AdvancedHunting.kql -------------------------------------------------------------------------------- /ExchangeOnline/EOPAdvancedHunting/AdvancedHunting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/EOPAdvancedHunting/AdvancedHunting.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/EOPAdvancedHunting/AdvancedHuntingWithPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/EOPAdvancedHunting/AdvancedHuntingWithPS.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/EOPAdvancedHunting/EOP_Unsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/EOPAdvancedHunting/EOP_Unsigned.zip -------------------------------------------------------------------------------- /ExchangeOnline/EXOAutomationAccountManagedIdentity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/EXOAutomationAccountManagedIdentity.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/EXOPermissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/EXOPermissions.md -------------------------------------------------------------------------------- /ExchangeOnline/FixWorkHoursVersion1-EWS-OAUTH2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/FixWorkHoursVersion1-EWS-OAUTH2.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/Cleanup-GraphModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/Cleanup-GraphModules.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/DemoAttachment.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/DemoAttachment.docx -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/ExOGraphAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/ExOGraphAPI.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/ExOMgGraphApi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/ExOMgGraphApi.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/Get-SheduleDemo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/Get-SheduleDemo.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/IMAPPOP3_OAUTH2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/IMAPPOP3_OAUTH2.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/IMAP_DelegatedUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/IMAP_DelegatedUser.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/Search-AuditlogGraph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/Search-AuditlogGraph.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/SendMailAzureAtomation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/SendMailAzureAtomation.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/GraphAPI/SimpleGraphSendMail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/GraphAPI/SimpleGraphSendMail.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/MTA-STS_TemplateStaticWebApp/DemoPipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MTA-STS_TemplateStaticWebApp/DemoPipeline.yaml -------------------------------------------------------------------------------- /ExchangeOnline/MTA-STS_TemplateStaticWebApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MTA-STS_TemplateStaticWebApp/README.md -------------------------------------------------------------------------------- /ExchangeOnline/MTA-STS_TemplateStaticWebApp/deployment/DeployStaticWebApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MTA-STS_TemplateStaticWebApp/deployment/DeployStaticWebApp.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/MTA-STS_TemplateStaticWebApp/root/.well-known/mta-sts.txt: -------------------------------------------------------------------------------- 1 | version: STSv1 2 | mode: enforce 3 | mx: *.mail.protection.outlook.com 4 | max_age: 604800 -------------------------------------------------------------------------------- /ExchangeOnline/MTA-STS_TemplateStaticWebApp/root/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MTA-STS_TemplateStaticWebApp/root/404.html -------------------------------------------------------------------------------- /ExchangeOnline/MTA-STS_TemplateStaticWebApp/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MTA-STS_TemplateStaticWebApp/root/index.html -------------------------------------------------------------------------------- /ExchangeOnline/MTA-STS_TemplateStaticWebApp/root/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MTA-STS_TemplateStaticWebApp/root/staticwebapp.config.json -------------------------------------------------------------------------------- /ExchangeOnline/MailUserFromCSV/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MailUserFromCSV/.gitignore -------------------------------------------------------------------------------- /ExchangeOnline/MailUserFromCSV/CreateMailuserFromCSV.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MailUserFromCSV/CreateMailuserFromCSV.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/MailUserFromCSV/Mailuser.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MailUserFromCSV/Mailuser.csv -------------------------------------------------------------------------------- /ExchangeOnline/MigrationCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MigrationCheck.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/MoveRequest_Report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/MoveRequest_Report.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/ReportEmailAddressesPerDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/ReportEmailAddressesPerDomain.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/SearchAuditLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/SearchAuditLog.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/UserMailboxWithoutExchangeLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/ExchangeOnline/UserMailboxWithoutExchangeLicense.ps1 -------------------------------------------------------------------------------- /Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze.psd1 -------------------------------------------------------------------------------- /Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze.psm1 -------------------------------------------------------------------------------- /Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_01.jpg -------------------------------------------------------------------------------- /Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_02.jpg -------------------------------------------------------------------------------- /Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_03.jpg -------------------------------------------------------------------------------- /Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.EXO.SpamAnalyze/Icewolf.EXO.SpamAnalyze_04.jpg -------------------------------------------------------------------------------- /Icewolf.EXO.SpamAnalyze/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.EXO.SpamAnalyze/readme.md -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Add-MAPIPermissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Add-MAPIPermissions.ps1 -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Export-MAPIPermissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Export-MAPIPermissions.ps1 -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI.psd1 -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI.psm1 -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_01.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_02.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_03.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_04.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_05.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_06.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_07.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Icewolf.Exchange.MAPI_08.jpg -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/Remove-MAPIPermissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/Remove-MAPIPermissions.ps1 -------------------------------------------------------------------------------- /Icewolf.Exchange.MAPI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.Exchange.MAPI/readme.md -------------------------------------------------------------------------------- /Icewolf.PIM/Icewolf.PIM.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.PIM/Icewolf.PIM.psd1 -------------------------------------------------------------------------------- /Icewolf.PIM/Icewolf.PIM.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Icewolf.PIM/Icewolf.PIM.psm1 -------------------------------------------------------------------------------- /Mailprotection/Get-Mailprotection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Mailprotection/Get-Mailprotection.ps1 -------------------------------------------------------------------------------- /Mailprotection/Get-Mailprotection01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Mailprotection/Get-Mailprotection01.jpg -------------------------------------------------------------------------------- /Mailprotection/Get-Mailprotection02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Mailprotection/Get-Mailprotection02.jpg -------------------------------------------------------------------------------- /Mailprotection/Get-Mailprotection03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Mailprotection/Get-Mailprotection03.jpg -------------------------------------------------------------------------------- /Mailprotection/Get-Mailprotection04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Mailprotection/Get-Mailprotection04.jpg -------------------------------------------------------------------------------- /Mailprotection/Get-Mailprotection_1.13.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Mailprotection/Get-Mailprotection_1.13.ps1 -------------------------------------------------------------------------------- /Mailprotection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Mailprotection/Readme.md -------------------------------------------------------------------------------- /MicrosoftTeams/AzureAutomation_MicrosoftTeams_ManagedIdentity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/AzureAutomation_MicrosoftTeams_ManagedIdentity.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/CheckTeamsClientUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/CheckTeamsClientUpdate.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Create-TeamsHolidays2023-CH.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/Create-TeamsHolidays2023-CH.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/CreateAutoAttendantandCallQueue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/CreateAutoAttendantandCallQueue.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Get-AllCallQueueAgents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/Get-AllCallQueueAgents.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Get-TeamsChannelEmailaddresses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/Get-TeamsChannelEmailaddresses.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Report-CsOnlineVoiceMailUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/Report-CsOnlineVoiceMailUserSettings.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Set-TeamsVoiceMailPromt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/Set-TeamsVoiceMailPromt.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/TeamsAppAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/TeamsAppAuthentication.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/TeamsClearLocalCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/TeamsClearLocalCache.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/TeamsPhoneNumber.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/MicrosoftTeams/TeamsPhoneNumber.ps1 -------------------------------------------------------------------------------- /PowerShell/ConvertHTMLToMarkdownForHugo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/PowerShell/ConvertHTMLToMarkdownForHugo.ps1 -------------------------------------------------------------------------------- /PowerShell/PowerShellBasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/PowerShell/PowerShellBasics.md -------------------------------------------------------------------------------- /PowerShell/crescendo/Get-Ipconfig.crescendo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/PowerShell/crescendo/Get-Ipconfig.crescendo.json -------------------------------------------------------------------------------- /PowerShell/crescendo/Ipconfig.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/PowerShell/crescendo/Ipconfig.psd1 -------------------------------------------------------------------------------- /PowerShell/crescendo/Ipconfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/PowerShell/crescendo/Ipconfig.psm1 -------------------------------------------------------------------------------- /PowerShell/crescendo/crescendo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/PowerShell/crescendo/crescendo.md -------------------------------------------------------------------------------- /Presentations/Cloud8_SwissDomainSecurityReportQ42023_20240112.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Presentations/Cloud8_SwissDomainSecurityReportQ42023_20240112.pdf -------------------------------------------------------------------------------- /Presentations/EXUSG_2023_Q1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Presentations/EXUSG_2023_Q1.pdf -------------------------------------------------------------------------------- /Presentations/EXUSG_2023_Q3_EmailSecurity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/Presentations/EXUSG_2023_Q3_EmailSecurity.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/HEAD/README.md --------------------------------------------------------------------------------