Skip to content

Instantly share code, notes, and snippets.

View Apoc70's full-sized avatar

Thomas Stensitzki Apoc70

View GitHub Profile
@Apoc70
Apoc70 / Get-ExchangeInfo.ps1
Last active May 2, 2024 08:38
Get Exchange org information for on-premises or Exchange Online as Xml
<#
.SYNOPSIS
This script exports On-Premises Exchange Org and Exchange Online Org configurations to Xml
.DESCRIPTION
The script exports dat using Export-CLixml to the folder \Output
You must create the folder prior to excurting the script.
.PARAMETER Environment
The envrionment to query, either OnPremises or ExchangeOnline
@Apoc70
Apoc70 / Get-ExchangeSecurityGroupsNestedMembers.ps1
Last active November 30, 2023 09:19
Export Exchange security group members
# This script exports all Exchange security groups that have members
# Empty groups are not included in the CSV output.
# Your domain DN
$Domain = 'DC=varunagroup,DC=de'
# Preferred domain controller FQDN
$DomainControllerFQDN = 'testms01.varunagroup.de'
# Fetch Exchange security groups
@Apoc70
Apoc70 / Get-IisTlsBindings.ps1
Created October 25, 2023 13:28
Query the current IIS SSL Bindings and provide the IIS Site and bound certificate as output
# Original source: https://techstronghold.com/scripting/@rudolfvesely/powershell-script-to-get-all-iis-bindings-and-ssl-certificates/
# Updated the script for a sorted output on Exchange Servers
Import-Module -Name WebAdministration
Get-ChildItem -Path IIS:SSLBindings | Sort-Object Port | ForEach-Object -Process `
{
if ($_.Sites)
{
$certificate = Get-ChildItem -Path CERT:LocalMachine/My |
# Get EXO mailboxes by size
Get-ExoMailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited | Get-ExoMailboxStatistics | Sort TotalItemSize -Descending | Format-Table DisplayName, TotalItemSize, ItemCount
# New B2B user email address
$newEmailAddress = "user@setebos-ag.com"
# Update primary SMTP address for a selected user
$B2BUserToUpdate = 'USER_varunagroup.de#EXT#'
Set-MailUser $B2BUserToUpdate -ExternalEmailAddress "SMTP:$newEmailAddress" -WindowsEmailAddress $newEmailAddress
# Fetch all mail users
$DomainNameFilter = '*varunagroup.de'
Get-MailUser -ResultSize Unlimited | ?{$_.ExternalEmailAddress -like $DomainNameFilter} | Sort-Object DisplayName | Select-Object DisplayName, PrimarySmtpAddress
@Apoc70
Apoc70 / MessageModify.cs
Created March 10, 2023 17:24
Example for intercepting email messages in an Exchange 2010 transport queue
// AttachmentModify
// ----------------------------------------------------------
// Example for intercepting email messages in an Exchange 2010 transport queue
//
// The example intercepts messages sent from a configurable email address(es)
// and checks the mail message for attachments have filename in to format
//
// WORKBOOK_{GUID}
//
// Changing the filename of the attachments makes it easier for the information worker
@Apoc70
Apoc70 / Add-EXOSmtpGatewayConnectors.ps1
Created February 5, 2023 08:43
This PowerShell script creats an Exchange Online inbound and outbound connector, and adds a transport rulle for the outbound connector.
# Name of the on-premises SMTP gateway
$GatewayName = 'NoSpamProxy'
# TLS certificate common name for incoming connection to EOP
$InboundTlsCN = 'smpto.varunagroup.de'
# TLS certificate common name for outgoing connection to EOP
$OutboundTlsCN = 'smpto.varunagroup.de'
# Fully qualified domain name (FQDN) of the on-premises SMTP gateway
@Apoc70
Apoc70 / Create-TestUsers.ps1
Created August 29, 2022 14:18
A simple script fro creating test user accounts in AD.
# Number of user accounts to create
$UserCount = 5
$RandomPassword = $true
$DefaultPassword = 'Pa55w.rd'
# User name prefix
# New user object will be named TestUser1, TestUser2, ...
$TestUserPrefix = 'TestUser'
# User object properties
$GivenName = 'Test'
@Apoc70
Apoc70 / nginx.conf
Created August 1, 2022 18:34
Partial nginx.conf file for an Exchange 2019 reverse proxy configuration
user www-data;
worker_processes auto;
pid /run/nginx.pid;
load_module modules/ndk_http_module.so;
load_module modules/ngx_http_lua_module.so;
load_module modules/ngx_stream_lua_module.so;
load_module modules/ngx_http_headers_more_filter_module.so;
events {