如何在powershell中允许手动或自动选择?

时间:2011-09-02 09:55:10

标签: powershell

我正在编写一个脚本,我希望用户输入手动服务器,或者他们可以提供服务器列表,例如c:\ temp \ servers.txt。

唯一的问题是我不知道我是如何实现这一点的 - 即我知道我可以提示用户输入下面的内容 - 但我希望他们有一个按钮选择或者其他东西 - 也许他们可以键入手动服务器或路径,然后PowerShell确定哪个是哪个?

我知道如何解决这个问题吗?

Read-Host "Do you wish to enter in a manual computer or list of computers? "

谢谢,

4 个答案:

答案 0 :(得分:3)

查看PromptForChoice方法。互联网上有很多资源。例如。 @Shay http://scriptolog.blogspot.com/2007/09/make-choice.html

首先,你必须显示一个选择提示(你在那里调用PromptForChoice),然后处理用户请求(查看上面页面上的开关)。

基本上一些示例代码可能是:

$choices = [Management.Automation.Host.ChoiceDescription[]] ( `
      (new-Object Management.Automation.Host.ChoiceDescription "&List","List of servers"),
      (new-Object Management.Automation.Host.ChoiceDescription "&One","One server"));
$answer = $host.ui.PromptForChoice("MicroTools","Run MicroTools?",$choices,0)
if ($answer -eq 0) {
  # get list of servers
} else {
  # get one server
}

答案 1 :(得分:2)

这是高级功能给出的另一种解决方案。将以下代码放入serv.ps1

param ([Parameter(mandatory=$true)]$Servers)

foreach($server in $Servers)
{
  Write-Host $Server
}

当你没有参数调用它时,它会提示你:

PS C:\temp> .\serv.ps1

applet de commande serv.ps1 à la position 1 du pipeline de la commande
Fournissez des valeurs pour les paramètres suivants :
Servers: Mach1
Mach1

有关可用参数的更多信息:

Get-Help about_Functions_Advanced

答案 2 :(得分:1)

您还可以编写一个脚本,要求用户作为脚本的一部分输入服务器。然后尝试检查输入的文本是否是文件路径。如果是,则获取内容并将其视为服务器列表。否则解析输入的文本 - 例如,假设各个服务器名称将以空格分隔。

该脚本将如下所示:

#Ask for servers (either space separated or file path)
write-host -noNewLine "Enter servers: "
$answer = read-host

#Process answer
if ($answer -eq $null)
{
    write-host -foregroundColor Red "Error: You have to specify servers."
    exit
}

if (Test-Path $answer)
{
    $servers = get-content $answer
}
else
{
    $servers = $answer.Split(" ")
}

#Print results
write-host "Result:"
$servers

希望它有所帮助。

答案 3 :(得分:0)

此链接对我有很大帮助,并使用了非常熟悉的vbscript类型提示符:

http://gallery.technet.microsoft.com/scriptcenter/1a386b01-b1b8-4ac2-926c-a4986ac94fed