Hi All.
I would like to write a PS script file that will accept a list that consists of a value pair.
The 2 parameters should be passed as a multi valued array, $id and $name
The idea is that I then want to process each value within the script using a foreach loop to print out each ID and each name.
param([string[]]$id_key_pair = $(throw "Please enter id and name as a pair"))