どのcmdletsがihostuisupportsmultiplechoiceelectionインターフェイスを使用して選択を求めますか?

StackOverflow https://stackoverflow.com/questions/3664061

  •  01-10-2019
  •  | 
  •  

質問

PowerShellで以前に複数の選択を求められたことを覚えていませんが、このインターフェイスを実装しているホストのいくつかの例を見てきました。残念ながら、これらは私がインターフェイスに見た唯一の参照です。 「ここであなたがそれを正しく実装していることをテストする方法はあります」を見たことがありません。

役に立ちましたか?

解決

私の最初の答えを無視してください。私が今見ることができるように、それはまったく答えではありません。そして、本当に興味深い質問をありがとう。

私はまだそのインターフェイスを使用するcmdletsを知りません。ただし、スクリプトから独自に使用できます。前述のget-choice.ps1を変更し、新しいOne get-choice2.ps1を呼び出します。

<#
.SYNOPSIS
    Displays PowerShell style menu and gets user choices

.DESCRIPTION
    *) Returns choice indexes.
    *) Choice keys are indicated by '&' in menu items.
    *) Help strings can be empty or nulls (items are used themselves).
#>

param
(
    # Menu caption
    [string]$Caption = 'Confirm',
    # Menu message
    [string]$Message = 'Are you sure you want to continue?',
    # Choice info pairs: item1, help1, item2, help2, ...
    [string[]]$Choices = ('&Yes', 'Continue', '&No', 'Stop'),
    # Default choice indexes (i.e. selected on [Enter])
    [int[]]$DefaultChoice = @(0)
)
if ($args) { throw "Unknown parameters: $args" }
if ($Choices.Count % 2) { throw "Choice count must be even." }

$descriptions = @()
for($i = 0; $i -lt $Choices.Count; $i += 2) {
    $c = [System.Management.Automation.Host.ChoiceDescription]$Choices[$i]
    $c.HelpMessage = $Choices[$i + 1]
    if (!$c.HelpMessage) {
        $c.HelpMessage = $Choices[$i].Replace('&', '')
    }
    $descriptions += $c
}

$Host.UI.PromptForChoice($Caption, $Message, [System.Management.Automation.Host.ChoiceDescription[]]$descriptions, $DefaultChoice)

今、私たちはそれをテストします:

Get-Choice2 'Title' 'Message' -DefaultChoice 0, 1, 2 -Choices @(
    'Choice &1', 'This is choice 1'
    'Choice &2', ''
    'Choice &3', ''
    'Choice &4', ''
    'Choice &5', ''
    'Choice &6', ''
    'Choice &7', ''
    'Choice &8', ''
    'Choice &9', ''
    'Choice &0', ''
)

10の選択肢を印刷し、最初の3つが(コンソールホストで)強調表示され、プロンプトがあります。

0> Test-Get-Choice2.ps1
Title
Message
[1] Choice 1
[2] Choice 2
[3] Choice 3
[4] Choice 4
[5] Choice 5
[6] Choice 6
[7] Choice 7
[8] Choice 8
[9] Choice 9
[0] Choice 0
[?] Help
(default choices are 1,2,3)
Choice[0]:

押すと Enter すぐに出力はデフォルトの3つのインデックスです:0、1、2。 5 + Enter + 3 + Enter + 1 + Enter + Enter その後、出力は4、2、0です。

できます。 PowerShell ISEもこれをサポートしていますが、UIはGUIバージョンではおそらくより良いものかもしれません。

他のヒント

例:コマンド Remove-Item C:\TEMP\Test 選択するように求められます。

Confirm
The item at C:\TEMP\Test has children and the Recurse parameter was not specified. If you continue, all children will be removed with the item. Are you sure you want to continue?
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"):

または、このスクリプト(またはそのアイデア)を使用して独自の呼び出しを作成できます。get -choice.ps1-パワーシェルスタイルメニューを表示し、ユーザーの選択を取得します

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top