For this assignment, you will create a PowerShell script that meets the following requirements:
* Script must have appropriate comments.
* Write a function that list the software (name and vendor) installed on the computer specified by input argument. The function must output the list to screen and output the list to a CSV file. The CSV file name must be computer_software.csv where computer is the computer name inputted as an argument to the function
* Write a function that lists the free disk space and percentage of disk space used on the computer. The function must accept a computer name as an input argument. The function must also output the list to screen and output the list to a CSV file. The CSV file name must be computer_hdspace.csv where computer is the computer name inputted as an argument to the function.
* Script must call each function at least one time.
* Script must accept a single computer name as input when the script is executed; this computer name must be passed to the functions.
* Name the script functions.ps1
Once you have completed the assignment, upload the functions.ps1 script, computer_software.csv and computer_hdspace.csv.