在PowerShell中提示用户输入

如何捕获用户的输入
在PowerShell中,如何让用户输入信息?

$input = Read-Host -Prompt "请输入名字,然后按回车" 

$key = [System.Console]::ReadKey( $true ).KeyChar # 获取字符
$key = [System.Console]::ReadKey( $true ).Key # 大写
日期:2020-04-11 23:04:32 来源:oir作者:oir