How to Detect Files of the Same Size on your Computer via PowerShell
Published Apr 05 2023 12:04 AM 4,553 Views
Microsoft

File management might be tedious, but it is sometimes required, especially when storage space is limited. PowerShell is an excellent tool for automating most activities including identifying files of the same size on your computer.

 

The script below will detect and report (rather than delete) all files in the directory and subdirectories, group them by size, filter out groups with only one file, and report on the files of the same size with their full path and creation time.

 

NOTE: Please make sure you further investigate the duplicate files this script finds before any other action is taken.

 

 

 

 

 

# Get all files in a directory and subdirectories
$files = Get-ChildItem -Recurse -File

# Group files by size
$groups = $files | Group-Object Length

# Filter groups with more than one item
$duplicates = $groups | Where-Object {$_.Count -gt 1}

# Output duplicate files
foreach ($duplicate in $duplicates) {
    Write-Host "Duplicate files of size $($duplicate.Name):"
    $duplicate.Group | Select-Object FullName, CreationTime | Sort-Object CreationTime | Format-Table -AutoSize
}

 

 

 

 

 

This script may be run in PowerShell by saving it as a .ps1 file and then running it from the PowerShell command prompt. Please keep in mind that if you have a large number of files on your computer, this script may take some time to run.
 
How to Detect Files of the Same Size on your Computer via PowerShellHow to Detect Files of the Same Size on your Computer via PowerShell

 

As always, please share your PowerShell automation scripts in the comments section below so that they can be added to or improved upon the script published above.

1 Comment
Co-Authors
Version history
Last update:
‎Apr 05 2023 09:14 AM
Updated by: