Mark Wilkinson wants a bit of user interaction:
Fully automated hands-off PowerShell scripts can be extermely useful for the DBA or System Administrator, but what if you need to get input from the user, or maybe you want to implement a menu system? Like most things related to PowerShell, you have a few options:
–
Read-Host
–[Console]
object methodsMost use cases are covered by
Read-Host
, but if you need something a little more flexible, the[Console]
methods might be the way to go.
Read on to see how these work, as well as one way to create a menu.