Sorry I wasn’t more specific in this subject but I’m not sure how to describe what I’m thinking. I want to start a project that requires a stock ticker-like output in the Powershell console. I’m not sure where to even start with this. I want to provide a layout (text, console-based output only) that will have multiple “fields”. Each of these “fields” will simply be the output of a Write-Host.
I want to run another script in parallel with this console layout that will send output from that script to this layout only by updating a specified field.
Here’s my attempt at explaining this better in a screenshot. http://screencast.com/t/IMVyifeH
I essentially want a “ReplaceAndWrite-Host” cmdlet. Something that will replace text in a particular spot in the console and update it without any interaction.
How would I even start this?