如何在powershell中写入用户输入

时间:2014-01-02 12:44:34

标签: powershell

在我的PowerShell配置文件脚本中,我想写入用户输入,这样当我启动PowerShell时,我的输入中已经有了一些东西,只需要输入。 我需要像“写输入”这样的东西。

我已经尝试过“echo”,“write-input”。

1 个答案:

答案 0 :(得分:2)

我会做类似的事情:

$defaultvalue = "This is the default value"
$a = read-host -Prompt "$defaultvalue (enter)"
if (!$a) {$a = $defaultvalue}
write-host "the value is now $a"