You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$files | Measure-Object -Property length -Sum -Average | Select-Object @{n = 'ComputerName'; e = {$env:COMPUTERNAME}}, Count, Sum, Average, @{n = 'Date'; e = {Get-Date}} # This code is from one of the comments on the challenge.
# When writing this i misunderstood the challenge and thought we had to log all the files as well.