Passing multiple values to a single PowerShell script parameter












72















I have a script to which I pass server name(s) in $args.



This way I can do stuff to this (these) server(s) using foreach:



.script.ps1 host1 host2 host3

foreach ($i in $args)
{
Do-Stuff $i
}


I'd like to add a named optional parameter called vlan. I've tried:



Param(
[string]$vlan
)

foreach ($i in $args)
{
Write-Host $i
}
Write-Host $vlan


It works if you pass a -vlan parameter but if you don't then the script auto assigns the last server name to $vlan.



So, how can you pass single or multiple parameters plus an optional named parameter to a PowerShell script?



Ideally, here are valid examples:



.script.ps1 host1
.script.ps1 host1 host2 host3
.script.ps1 host1 host2 -vlan office









share|improve this question





























    72















    I have a script to which I pass server name(s) in $args.



    This way I can do stuff to this (these) server(s) using foreach:



    .script.ps1 host1 host2 host3

    foreach ($i in $args)
    {
    Do-Stuff $i
    }


    I'd like to add a named optional parameter called vlan. I've tried:



    Param(
    [string]$vlan
    )

    foreach ($i in $args)
    {
    Write-Host $i
    }
    Write-Host $vlan


    It works if you pass a -vlan parameter but if you don't then the script auto assigns the last server name to $vlan.



    So, how can you pass single or multiple parameters plus an optional named parameter to a PowerShell script?



    Ideally, here are valid examples:



    .script.ps1 host1
    .script.ps1 host1 host2 host3
    .script.ps1 host1 host2 -vlan office









    share|improve this question



























      72












      72








      72


      7






      I have a script to which I pass server name(s) in $args.



      This way I can do stuff to this (these) server(s) using foreach:



      .script.ps1 host1 host2 host3

      foreach ($i in $args)
      {
      Do-Stuff $i
      }


      I'd like to add a named optional parameter called vlan. I've tried:



      Param(
      [string]$vlan
      )

      foreach ($i in $args)
      {
      Write-Host $i
      }
      Write-Host $vlan


      It works if you pass a -vlan parameter but if you don't then the script auto assigns the last server name to $vlan.



      So, how can you pass single or multiple parameters plus an optional named parameter to a PowerShell script?



      Ideally, here are valid examples:



      .script.ps1 host1
      .script.ps1 host1 host2 host3
      .script.ps1 host1 host2 -vlan office









      share|improve this question
















      I have a script to which I pass server name(s) in $args.



      This way I can do stuff to this (these) server(s) using foreach:



      .script.ps1 host1 host2 host3

      foreach ($i in $args)
      {
      Do-Stuff $i
      }


      I'd like to add a named optional parameter called vlan. I've tried:



      Param(
      [string]$vlan
      )

      foreach ($i in $args)
      {
      Write-Host $i
      }
      Write-Host $vlan


      It works if you pass a -vlan parameter but if you don't then the script auto assigns the last server name to $vlan.



      So, how can you pass single or multiple parameters plus an optional named parameter to a PowerShell script?



      Ideally, here are valid examples:



      .script.ps1 host1
      .script.ps1 host1 host2 host3
      .script.ps1 host1 host2 -vlan office






      powershell parameters






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 28 '17 at 17:57









      Peter Mortensen

      13.8k1987113




      13.8k1987113










      asked Feb 27 '13 at 19:24









      jcarpiojcarpio

      1,22031521




      1,22031521
























          4 Answers
          4






          active

          oldest

          votes


















          136














          The easiest way is probably to use two parameters: One for hosts (can be an array), and one for vlan.



          param([String] $Hosts, [String] $VLAN)


          Instead of



          foreach ($i in $args)


          you can use



          foreach ($hostName in $Hosts)


          If there is only one host, the foreach loop will iterate only once. To pass multiple hosts to the script, pass it as an array:



          myScript.ps1 -Hosts host1,host2,host3 -VLAN 2


          ...or something similar.






          share|improve this answer





















          • 2





            thanks for including the info on how to call the script - I'm often missing little pieces like that in powershell.

            – Jan Bühler
            Feb 21 '18 at 16:00



















          17














          Parameters take input before arguments. What you should do instead is add a parameter that accepts an array, and make it the first position parameter. ex:



          param(
          [Parameter(Position = 0)]
          [string]$Hosts,
          [string]$VLAN
          )

          foreach ($i in $Hosts)
          {
          Do-Stuff $i
          }


          Then call it like:



          .script.ps1 host1, host2, host3 -VLAN 2


          Notice the comma between the values. This collects them in an array






          share|improve this answer































            10














            One way to do it would be like this:



             param(
            [Parameter(Position=0)][String]$Vlan,
            [Parameter(ValueFromRemainingArguments=$true)][String]$Hosts
            ) ...


            This would allow multiple hosts to be entered with spaces.






            share|improve this answer


























            • Really nice! Except your example is missing a ']' to close the second Parameter attribute.

              – Sebastiaan M
              Jun 3 '18 at 4:55



















            -3














            I call a scheduled script who must connect to a list of Server this way:



            Powershell.exe -File "YourScriptPath" "Par1,Par2,Par3"


            Then inside the script:



            param($list_of_servers)
            ...
            Connect-Viserver $list_of_servers.split(",")


            The split operator returns an array of string






            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f15120597%2fpassing-multiple-values-to-a-single-powershell-script-parameter%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              136














              The easiest way is probably to use two parameters: One for hosts (can be an array), and one for vlan.



              param([String] $Hosts, [String] $VLAN)


              Instead of



              foreach ($i in $args)


              you can use



              foreach ($hostName in $Hosts)


              If there is only one host, the foreach loop will iterate only once. To pass multiple hosts to the script, pass it as an array:



              myScript.ps1 -Hosts host1,host2,host3 -VLAN 2


              ...or something similar.






              share|improve this answer





















              • 2





                thanks for including the info on how to call the script - I'm often missing little pieces like that in powershell.

                – Jan Bühler
                Feb 21 '18 at 16:00
















              136














              The easiest way is probably to use two parameters: One for hosts (can be an array), and one for vlan.



              param([String] $Hosts, [String] $VLAN)


              Instead of



              foreach ($i in $args)


              you can use



              foreach ($hostName in $Hosts)


              If there is only one host, the foreach loop will iterate only once. To pass multiple hosts to the script, pass it as an array:



              myScript.ps1 -Hosts host1,host2,host3 -VLAN 2


              ...or something similar.






              share|improve this answer





















              • 2





                thanks for including the info on how to call the script - I'm often missing little pieces like that in powershell.

                – Jan Bühler
                Feb 21 '18 at 16:00














              136












              136








              136







              The easiest way is probably to use two parameters: One for hosts (can be an array), and one for vlan.



              param([String] $Hosts, [String] $VLAN)


              Instead of



              foreach ($i in $args)


              you can use



              foreach ($hostName in $Hosts)


              If there is only one host, the foreach loop will iterate only once. To pass multiple hosts to the script, pass it as an array:



              myScript.ps1 -Hosts host1,host2,host3 -VLAN 2


              ...or something similar.






              share|improve this answer















              The easiest way is probably to use two parameters: One for hosts (can be an array), and one for vlan.



              param([String] $Hosts, [String] $VLAN)


              Instead of



              foreach ($i in $args)


              you can use



              foreach ($hostName in $Hosts)


              If there is only one host, the foreach loop will iterate only once. To pass multiple hosts to the script, pass it as an array:



              myScript.ps1 -Hosts host1,host2,host3 -VLAN 2


              ...or something similar.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Jan 2 at 15:30









              Micha Wiedenmann

              10.5k1364106




              10.5k1364106










              answered Feb 27 '13 at 19:30









              Bill_StewartBill_Stewart

              13.1k32436




              13.1k32436








              • 2





                thanks for including the info on how to call the script - I'm often missing little pieces like that in powershell.

                – Jan Bühler
                Feb 21 '18 at 16:00














              • 2





                thanks for including the info on how to call the script - I'm often missing little pieces like that in powershell.

                – Jan Bühler
                Feb 21 '18 at 16:00








              2




              2





              thanks for including the info on how to call the script - I'm often missing little pieces like that in powershell.

              – Jan Bühler
              Feb 21 '18 at 16:00





              thanks for including the info on how to call the script - I'm often missing little pieces like that in powershell.

              – Jan Bühler
              Feb 21 '18 at 16:00













              17














              Parameters take input before arguments. What you should do instead is add a parameter that accepts an array, and make it the first position parameter. ex:



              param(
              [Parameter(Position = 0)]
              [string]$Hosts,
              [string]$VLAN
              )

              foreach ($i in $Hosts)
              {
              Do-Stuff $i
              }


              Then call it like:



              .script.ps1 host1, host2, host3 -VLAN 2


              Notice the comma between the values. This collects them in an array






              share|improve this answer




























                17














                Parameters take input before arguments. What you should do instead is add a parameter that accepts an array, and make it the first position parameter. ex:



                param(
                [Parameter(Position = 0)]
                [string]$Hosts,
                [string]$VLAN
                )

                foreach ($i in $Hosts)
                {
                Do-Stuff $i
                }


                Then call it like:



                .script.ps1 host1, host2, host3 -VLAN 2


                Notice the comma between the values. This collects them in an array






                share|improve this answer


























                  17












                  17








                  17







                  Parameters take input before arguments. What you should do instead is add a parameter that accepts an array, and make it the first position parameter. ex:



                  param(
                  [Parameter(Position = 0)]
                  [string]$Hosts,
                  [string]$VLAN
                  )

                  foreach ($i in $Hosts)
                  {
                  Do-Stuff $i
                  }


                  Then call it like:



                  .script.ps1 host1, host2, host3 -VLAN 2


                  Notice the comma between the values. This collects them in an array






                  share|improve this answer













                  Parameters take input before arguments. What you should do instead is add a parameter that accepts an array, and make it the first position parameter. ex:



                  param(
                  [Parameter(Position = 0)]
                  [string]$Hosts,
                  [string]$VLAN
                  )

                  foreach ($i in $Hosts)
                  {
                  Do-Stuff $i
                  }


                  Then call it like:



                  .script.ps1 host1, host2, host3 -VLAN 2


                  Notice the comma between the values. This collects them in an array







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 27 '13 at 19:31









                  Frode F.Frode F.

                  37.5k65181




                  37.5k65181























                      10














                      One way to do it would be like this:



                       param(
                      [Parameter(Position=0)][String]$Vlan,
                      [Parameter(ValueFromRemainingArguments=$true)][String]$Hosts
                      ) ...


                      This would allow multiple hosts to be entered with spaces.






                      share|improve this answer


























                      • Really nice! Except your example is missing a ']' to close the second Parameter attribute.

                        – Sebastiaan M
                        Jun 3 '18 at 4:55
















                      10














                      One way to do it would be like this:



                       param(
                      [Parameter(Position=0)][String]$Vlan,
                      [Parameter(ValueFromRemainingArguments=$true)][String]$Hosts
                      ) ...


                      This would allow multiple hosts to be entered with spaces.






                      share|improve this answer


























                      • Really nice! Except your example is missing a ']' to close the second Parameter attribute.

                        – Sebastiaan M
                        Jun 3 '18 at 4:55














                      10












                      10








                      10







                      One way to do it would be like this:



                       param(
                      [Parameter(Position=0)][String]$Vlan,
                      [Parameter(ValueFromRemainingArguments=$true)][String]$Hosts
                      ) ...


                      This would allow multiple hosts to be entered with spaces.






                      share|improve this answer















                      One way to do it would be like this:



                       param(
                      [Parameter(Position=0)][String]$Vlan,
                      [Parameter(ValueFromRemainingArguments=$true)][String]$Hosts
                      ) ...


                      This would allow multiple hosts to be entered with spaces.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jun 25 '18 at 3:26









                      DeanOC

                      5,50563246




                      5,50563246










                      answered May 12 '17 at 14:38









                      NitzNitz

                      10912




                      10912













                      • Really nice! Except your example is missing a ']' to close the second Parameter attribute.

                        – Sebastiaan M
                        Jun 3 '18 at 4:55



















                      • Really nice! Except your example is missing a ']' to close the second Parameter attribute.

                        – Sebastiaan M
                        Jun 3 '18 at 4:55

















                      Really nice! Except your example is missing a ']' to close the second Parameter attribute.

                      – Sebastiaan M
                      Jun 3 '18 at 4:55





                      Really nice! Except your example is missing a ']' to close the second Parameter attribute.

                      – Sebastiaan M
                      Jun 3 '18 at 4:55











                      -3














                      I call a scheduled script who must connect to a list of Server this way:



                      Powershell.exe -File "YourScriptPath" "Par1,Par2,Par3"


                      Then inside the script:



                      param($list_of_servers)
                      ...
                      Connect-Viserver $list_of_servers.split(",")


                      The split operator returns an array of string






                      share|improve this answer




























                        -3














                        I call a scheduled script who must connect to a list of Server this way:



                        Powershell.exe -File "YourScriptPath" "Par1,Par2,Par3"


                        Then inside the script:



                        param($list_of_servers)
                        ...
                        Connect-Viserver $list_of_servers.split(",")


                        The split operator returns an array of string






                        share|improve this answer


























                          -3












                          -3








                          -3







                          I call a scheduled script who must connect to a list of Server this way:



                          Powershell.exe -File "YourScriptPath" "Par1,Par2,Par3"


                          Then inside the script:



                          param($list_of_servers)
                          ...
                          Connect-Viserver $list_of_servers.split(",")


                          The split operator returns an array of string






                          share|improve this answer













                          I call a scheduled script who must connect to a list of Server this way:



                          Powershell.exe -File "YourScriptPath" "Par1,Par2,Par3"


                          Then inside the script:



                          param($list_of_servers)
                          ...
                          Connect-Viserver $list_of_servers.split(",")


                          The split operator returns an array of string







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Feb 12 '16 at 14:58









                          BR1COPBR1COP

                          634




                          634






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f15120597%2fpassing-multiple-values-to-a-single-powershell-script-parameter%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              MongoDB - Not Authorized To Execute Command

                              in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                              How to fix TextFormField cause rebuild widget in Flutter