Question: Please create a Powershell script that will: Ask the user to type the path to a folder; this will be the folder that they want
Please create a Powershell script that will:
Ask the user to type the path to a folder; this will be the folder that they want to be inspected.
Example: C:\Users\
Recursively examine the files and folders inside that path and produce the following three reports:
- Top 5 Newest Files
- Show the 5 most recent files created.
- Top 15 Largest Files
- Show the 15 largest files.
- Top 20 Recently Accessed Files
- Show the 20 most recently accessed files sorted by file type.
Save your findings as three professional looking files in the C:\Reports\2021\ directory (one file per report).
- Format the information as a table with headings, columns, and rows.
- Each file should start with a line that includes the report's name (see above) followed by one or more lines that include a two-sentence description of what the report is.
- Use the following file names:
- Top 5 Newest Files: top5recent.txt
- Top 15 Largest Files: top15largest.txt
- Top 20 Recently Accessed Files: top20accessed.txt
- Use of new lines, ascii characters, and other elements to improve the look of the report should be utilized.
For all three of your reports, you should include the following information in your output, in the following order:
- Full path to the file.
- File size in GB.
- Date and time the file or folder was last changed.
- Date and time the file or folder was last accessed.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
