Powershell - Read-Host Cmdlet 命令

Cmdlet

Read-Host cmdlet 用于从控制台读取。

在这些示例中,我们看到了 Read-Host cmdlet 的运行情况。

示例

在此示例中,我们将要求用户传递输入并将输入读取到变量中。

$choice = Read-Host "Please put your choice"

Powershell 将显示一个弹出窗口以输入值。 输入值后,它将保存在 $choice 变量中。 现在打印变量。

$choice

输出

您可以看到变量的值。

1

❮ powershell_advanced_cmdlets.html