Google Apps Manager (GAM) – delete email from all Google mailboxes in your domain
If you get a request to delete an email from a large number of user mailboxes or all Google mailboxes, you can run the following commands. This is useful as…
A Drink of Technology for the Thirsty Mind
If you get a request to delete an email from a large number of user mailboxes or all Google mailboxes, you can run the following commands. This is useful as…
If you need a list of users and their respective proxy addresses then the command below will do this 🙂 Get-ADUser –Filter * –Properties proxyaddresses | Select-Object Name, @{L =…
To connect to Skype online via PowerShell open an elevated PowerShell session and run the commands: # Download and install the Skype PowerShell Command http://go.microsoft.com/fwlink/?LinkId=294688 $credential = Get-Credential $session =…
I’m doing some load testing on one of my SMTP Smart Hosts, and needed to send a few thousand emails in a controlled space of time. I’ve written this quick…
With the advent of Windows PowerShell, performing bulk tasks just gets easier and easier. Consider a scenario where you have a bunch of Domain Local groups that you need to…
There’s no built-in feature at this time to enable litigation hold for all mailboxes in Exchange Online, but some organisations have this as a requirement. Here’s a script that can…
Deploying IIS on A Windows Container can be done In two ways, First way deploy windows Nano Server Container and then Install IIS using DISM, Second way and more simple…
To create a basic Windows Container, I’ll use the docker run command which will create a Windows Nano Server 2016 Container without a specific name. open port or any other…
In this article, I’ll show you how to deploy Windows Containers on Windows Server 2016 with the Docker Engine management tool. Windows Containers was first released with Windows Server 2016…