I am new to Powershell and am stuck on a script I need to do using parameter(). Here is the question:
This script will take the user’s name and 3 separate grades. It will then average the
grades and print the result. This script should do the following:
- Using the param() function, accept 4 command-line inputs to the script and name
them $name, $test1, $test2, $test3. - Calculate the average grade and set it equal to a variable called $average
- Print the message “The test average for name is average”. Use interpolation to
print the actual name and numeric average in the message. - Test the script a few times with different data
Thanks.