ALL EXCHANGE POWERSHELL OFFICE 365
Fixing the Pipeline
Some comments to support Module 3 of course M10961 # The following command will not work as Get-ADComputer returns ADComputer ...
Read More
Read More
Creating PowerShell Custom Objects
Whilst rarely needed when running PowerShell commands in the console, creating custom objects can be a useful technique when writing ...
Read More
Read More
Datacenter Switchover – Updating DNS
As part of a Datacenter switchover, the DNS record of the CAS array in the failed site should be updated ...
Read More
Read More
Updating Email addresses programmatically
Recently I was asked the question: 'Can you remove a mailbox from email address policies to stop the reply address ...
Read More
Read More
Using a Hash Table to format data
When you use Format-Table you can choose which columns you wish to view. Get-WMIObject Win32_LogicalDisk -Filter "DriveType=3" | Format-Table DeviceID, ...
Read More
Read More
Open File Dialog Box
Often when working with PowerShell you will want to specify a file to read data from it. Whilst the file ...
Read More
Read More
Creating you own GUI Application
PowerShell is a wonderful tool to gather information and analyse or display it. However, it can be somewhat daunting for ...
Read More
Read More
Changing Screen Colours
Changing screen colours can be easily done using the .NET [Console] object with commands similar to below: [Console]::ForegroundColor = "yellow" ...
Read More
Read More