I’ve seen the following a lot in PowerShell, but what does it do exactly?
$_
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is the variable for the current value in the pipe line, which is called
$PSItemin Powershell 3 and newer.or
For example in the above code the
%{}block is called for every value in the array. The$_or$PSItemvariable will contain the current value.