2014-09-08 25 views
6

Sto tentando di visualizzare un prompt per l'azione dell'utente e se non viene eseguita alcuna azione, il prompt si chiude e lo script continua. qui è il mio comando dialogo configuraiton prompt deiPowerShell: prompt utente che scade il prompt dopo xx secondi


$yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes","" 
$no = New-Object System.Management.Automation.Host.ChoiceDescription "&No","" 
$cancel = New-Object System.Management.Automation.Host.ChoiceDescription "&Cancel","" 
$choices = [System.Management.Automation.Host.ChoiceDescription[]]($yes,$no,$cancel) 
$caption = "Caption message here" 
$dialogmessage = ("Do you want to do something?:`n") 

$timer = #set some value 
#While the value is grater than zero keep the prompt open 

while($timer -gt 0) 
{ 
    $result = $Host.UI.PromptForChoice($caption,$dialogmessage,$choices,0) 

    if($result -eq 0){Write-Host "Yes was selected"} 

    if($result -eq 1){Write-Host "No was selected"} 

    if($result -eq 2){Write-Host "Canceled by user.";exit} 
} 

ho guardato su e giù per internet ho visto questo implementato in C#, ma per la vita di me non può determinare l'approccio migliore per PowerShell. Gradirei qualsiasi aiuto.

Grazie

Edit: Grazie Noah, ecco il codice aggiornato, è ancora più compatta troppo!

  $prompt = new-object -comobject wscript.shell 
      $answer = $prompt.popup(("Do you want to do something?`n",5,"title",3)    
      if($answer -eq 6) {Write-Host "Yes was selected"} 
      if($answer -eq 7) {Write-Host "No was selected"} 
      if($answer -eq -1) {Write-Host "Timed out} 
      if($answer -eq 2) {Write-Host "Canceled by user.";exit}  

risposta

6

Qui si va ... scavato questo fuori di uno dei miei vecchi script

#Value Description 
#0 Show OK button. 
#1 Show OK and Cancel buttons. 
#2 Show Abort, Retry, and Ignore buttons. 
#3 Show Yes, No, and Cancel buttons. 
#4 Show Yes and No buttons. 
#5 Show Retry and Cancel buttons. 
#http://msdn.microsoft.com/en-us/library/x83z1d9f(v=vs.84).aspx 

$a = new-object -comobject wscript.shell 
$intAnswer = $a.popup("Question?",2,"Title",4) #first number is timeout, second is display. 

#7 = no , 6 = yes, -1 = timeout 
+0

Wow ho mai pensato di utilizzare la ComObject wscript.shell. Grazie Noah! –

+0

Prego, sarei felice di poterti aiutare –