Ever had a script which contains an array and a foreach loop? And then you want to test the content of the foreach, but only with one entry for troubleshooting purposes for example. I have. Lets paint an example.

$PossibleDrinks = @(
    "Coffee",
    "Milkshake",
    "Soda"
)

Foreach ($Drink in $PossibleDrinks) {
    Write-Output "I like to drink $Drink. Do you too?"
}

then I used to do something like:

## Get one entry
$Drink = $PossibleDrinks[0]

## Execute the content of the foreach
Write-Output "I like to drink $Drink. Do you too?"

This works fine, but I had to write the code to get the single entry and I’m lazy. Like every admin, am I right? So I wanted a quicker way.

## Get one entry
Foreach ($Drink in $PossibleDrinks) {}

## Execute the content of the foreach
Write-Output "I like to drink $Drink. Do you too?"

This way I can just copy the Foreach line and just add a “}” to the end. This saved me lots of time (cumulative) while troubleshooting my code. EDIT: In this example I get the last $Drink in the array of $PossibleDrinks. In this example it looks a bit silly, but when you are working with an array of AD user objects or VM objects and you want to quickly check what a piece of code does with an object of your dataset, then it might be quickly become useful fast.

2 responses to “Foreach – Quickly get one entry”

  1. Manas Kumar Dash Avatar
    Manas Kumar Dash

    The last script only show the last value of array by default.
    I like to drink Soda. Do you too?

    1. Jos Fissering Avatar

      Tnx for the reply and the clarification. That’s exactly the purpose of the used code. But I give you that it maybe a bit misleading because in the example above I got the first entry. I edited the post to make it more clear.

Leave a Reply

Your email address will not be published. Required fields are marked *