Some comments to support Module 3 of course M10961 # The following command will not work as Get-ADComputer returns ADComputer…
Whilst rarely needed when running PowerShell commands in the console, creating custom objects can be a useful technique when writing…
As part of a Datacenter switchover, the DNS record of the CAS array in the failed site should be updated…
Recently I was asked the question: ‘Can you remove a mailbox from email address policies to stop the reply address…
When you use Format-Table you can choose which columns you wish to view. Get-WMIObject Win32_LogicalDisk -Filter “DriveType=3” | Format-Table DeviceID,…
Often when working with PowerShell you will want to specify a file to read data from it. Whilst the file…
PowerShell is a wonderful tool to gather information and analyse or display it. However, it can be somewhat daunting for…
Changing screen colours can be easily done using the .NET [Console] object with commands similar to below: [Console]::ForegroundColor = “yellow”…