- PowerShell 教程
- PowerShell - 主页
- PowerShell - 概述
- PowerShell - 环境设置
- PowerShell - 命令
- PowerShell - 文件和文件夹
- PowerShell - 日期和时间
- PowerShell - 文件 I/O
- PowerShell - 高级命令
- PowerShell - 脚本
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 反引号
- PowerShell - 括号
- PowerShell - 别名
- PowerShell 有用资源
- PowerShell - 快速指南
- PowerShell - 有用资源
- PowerShell - 讨论
Powershell - Read-Host 命令
命令
Read-Host 命令用于从控制台读取。
在这些示例中,我们看到了 Read-Host 命令正在执行。
示例
在此示例中,我们将要求用户传递一个输入,并将该输入读入变量。
$choice = Read-Host "Please put your choice"
Powershell 将显示一个弹出窗口让用户输入值。输入值后,它将保存在 $choice 变量中。现在打印该变量。
$choice
输出
您可以看到该变量的值。
1
powershell_advanced_cmdlets.htm
广告