*** 4. Output all ".sys" files that start with the letters and *** larger than 500 KB (Length > 500KB) in C:\Windows\sys
Posted: Sat May 14, 2022 6:53 pm
*** 4. Output all ".sys" files that start with the letters and *** larger than 500 KB (Length > 500KB) in C:\Windows\system32\driverstore using the cmdlet: Get-ChildItem ## HINT: 2 files returned ## YOUR CODE HERE 77 78 79 B0 81 82 83 84 85 86 87 88 *** 5. Now that the two files we were looking for are found, let's export them out to CSV file named findings.csv ## HINT: 1 CSV file should output to the current directory ## YOUR CODE HERE