I want to write a powershell ps1 script, which needs 2 argument sets,(-a -d) and each can have upto n attributes. How to implement that?
example : DoTheTask -a <task name 1> <task name 2> ... -d <machine name 1> <machine name 2>...
|
I want to write a powershell ps1 script, which needs 2 argument sets,(-a -d) and each can have upto n attributes. How to implement that?
| |||
|
feedback
|
|
You can do this:
Then you can call | |||||||||
feedback
|
|
Can you organize your task names and machines names in such a way that they can be put in to a single string with delimiters. In other words, could your -a argument be a string a comma-separated task names and your -d argument be a string of comma-separated machine names? If so, then all you need to do is parse the string into its components at the start of your script. | |||
feedback
|
|
If you are passing these arguments to the script itself, you could leverage the Nonetheless, if you want to continue doing it this way, you can use a function like the below:
| |||
|
feedback
|