A quick powershell tip for you lovely people.

Make sure comments do not clip the end of your code or it will break as bellow

Write-host "Hello World" -ForegroundColor red#red is good

However a space fixes it

Write-host "Hello World" -ForegroundColor red #red is good

By Chris