In PSH V2, Get-Content –Tail 10 –Wait will display the last 10 lines of a file, then poll it every second and display any additions to it. In PSH V1, Get-Content didn’t have a –Tail flag, so if you wanted to do the equivalent of the Unix tail(1), you’d have to let Get-Content scroll through the entire file. This was my workaround from those days, but it’s still handy to illustrate how to work with FileStreams and StreamReaders.