Advertisement
Guest User

Untitled

a guest
Aug 27th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $reprocessa = Read-Host -Prompt "1 - Reprocessa?(S/N/?)"
  2. If ($reprocessa -eq '?') {
  3.     "Display help here"
  4. } If ($reprocessa -ne 'S' -or $reprocessa -ne 'N') {
  5.     $Reprocesa = 'N'
  6. }
  7. $revalida = Read-Host -Prompt "2 - Revalida? (S/N/?)"
  8. If ($revalida -eq '?') {
  9.     "Display help here"
  10. } If ($revalida -ne 'S' -or $revalida -ne 'N') {
  11.     $Revalida = 'N'
  12. }
  13. $ios = Read-Host -Prompt "3 - Incluir ou Substituir? (I/S/?)"
  14. If ($ios -eq '?') {
  15.     "Display help here"
  16. } If ($ios -ne 'S' -or $ios -ne 'N') {
  17.     $ios = 'I'
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement