Passing multiple values to a single PowerShell script parameter
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
add a comment |
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
add a comment |
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
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
powershell parameters
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
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
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.
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
add a comment |
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
add a comment |
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.
Really nice! Except your example is missing a ']' to close the second Parameter attribute.
– Sebastiaan M
Jun 3 '18 at 4:55
add a comment |
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Feb 27 '13 at 19:31
Frode F.Frode F.
37.5k65181
37.5k65181
add a comment |
add a comment |
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.
Really nice! Except your example is missing a ']' to close the second Parameter attribute.
– Sebastiaan M
Jun 3 '18 at 4:55
add a comment |
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.
Really nice! Except your example is missing a ']' to close the second Parameter attribute.
– Sebastiaan M
Jun 3 '18 at 4:55
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Feb 12 '16 at 14:58
BR1COPBR1COP
634
634
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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