Using PowerShell ISE or VSCode, create a PowerShell script thatwill do the following:
You are going to create an HTML web page report from a standardprocessed report. You will use the text file “STUDENTS.TXT†locatedon Canvas.
The script must meet the following requirements:
- The output file should be named ITS3410-{yourname}.htm
- Every line of data that has a student number (9999-9999) mustbe included in the report
- All data must be trimmed
- No leading white space
- No trailing white space
- No empty values
- No garbage lines
- The student number MUST be detected using regular expression(regex)
- You must include comments in your code to explain it
- The report headers must be visible in the HTML web page