For some of monitoring applications and for tasks that are required to be scheduled to poll some service, we traditionally use a console application that in turn calls some methods in our business layer or polls file locations/ftp locations.
For another task I was carrying out I started playing about with Powershell and was pretty impressed, which got me thinking what are the benefits of a Powershell script and a console application.
Is seems the fact that the powershell script can be edited on the fly without recompiling which makes it a plus for potential changes, but there must be drawbacks that I am not seeing.
So when would people advise swapping a console application for a Powershell script?