It may be a stupid question, but I just start my journey with PowerShell.
What I'm trying to archive is to create Input-like cmdlt in PowerShell, the same as in Python.
By that, I mean that I search for cmdlt that will execute something like this:
searched_user = str(input('Please input your AD user name: '))
but in PowerShell
Read-Host is not sufficient for my needs. I understand and treat it like print in Python.
I tried Read-Host but this is good for prompting something.
Read-Hostdoes support prompting the user; see Microsoft Learn onRead-Hostinput()does thatRead-Hostdoesn't?