Scripting with PowerShell: Graded Assignment 1-Learning the Ropes
Introduction:
This is your first graded assignment. Please ensure that you submit all the required materials prior to deadline, identified in your Instructional Plan, Assignments are due at 11:59:00PM-any assignments that are submitted after the deadline are subject to the Conestoga College Academic Policies (Late policy)
Requirements:
1. Create a new environment in VS Code; The environment should be titled "Lastname_PSLabs" where Lastname is. your last name. Le. "Trunkin_PSLabs"
2 3
. Create a new script-in this environment - "Firstname Lab1.ps1" (where first name is your first name)
. Create a script with the following requirements
a. A proper header with your name, version, and all other header items that were discussed in the lectures/presentations
b. Below the header, write a small message which states what you have learned so far in this course (limit to the scope of this course) in a comment block.
c. Script comments each line must be commented with personal reasoning, and what it does.
4. Interactive Script Creation.
Use Write-Host to print a welcome message at the beginning of your script.
b. Use Read-Host to prompt the user to enter their name and store it in a variable. Display the name back to the user with a custom message using Write-Host.
c. Use a few parameters and arguments (of your choice)