top of page
Writer's pictureUzair Ansari

Search and delete file using PowerShell


Introduction:

PowerShell is a powerful scripting language that provides administrators and power users with the ability to automate various tasks in the Windows environment. One common task is searching for and deleting files. In this blog post, we will explore a PowerShell script that allows you to search for and delete a specific file, providing detailed explanations for each line of the script. Additionally, we will discuss the instances where this script can be useful.


The provided PowerShell script is designed to search for and delete file using PowerShell from multiple partitions from a local drive on a Windows system.



Important Note: While the provided script can be a useful tool for searching and deleting files, it's essential to exercise caution when working with file deletion operations. Before running the script, take the time to carefully review and understand each line of code, as well as the specific file or file pattern being targeted for deletion. See 'Explanation of each line' section for more details.
Ensure that you have a clear understanding of the file(s) you want to delete, the search criteria used, and the potential impact on your system. It's recommended to test the script in a controlled environment or with non-critical files to observe its behavior before running it on important data.
Additionally, make sure you have a proper backup of any crucial files or data that might be affected by the script. This precautionary measure will help mitigate the risk of accidental data loss.
By approaching the script with a thorough understanding and taking necessary precautions, you can confidently and safely utilize its functionality to search for and delete files as intended.


$DriveList = (Get-WmiObject win32_logicaldisk | Where {$_.drivetype -eq 3}).deviceid

[array]::Reverse($DriveList)

foreach($Drive in $DriveList)
{
    Get-ChildItem $Drive\* -Recurse -Filter "delete.txt" | Remove-Item -Force
}



Explanation of each line:


1. $DriveList = (Get-WmiObject win32_logicaldisk | Where {$_.drivetype -eq 3}).deviceid

This line retrieves the logical disks on the system using the Get-WmiObject cmdlet with the win32_logicaldisk class. It then filters the result to only include drives with a drivetype of 3, which corresponds to local hard disks. I have used this because I wanted to perform a search only on local drives. The deviceid property contains the drive letters, which are assigned to the $DriveList variable.



2. [array]::Reverse($DriveList)

This optional line reverses the order of the drive letters in the $DriveList array. By default C drive will be listed first. But in case you want to reverse the search operation and want to perform the search on C drive at the last, you can use this. Reversing the order ensures that files are searched and deleted from the lower-level drives first, before moving to highest-level drives such as the C: drive.



3. foreach($Drive in $DriveList)

This line starts a loop that iterates through each drive letter stored in the $DriveList array.



4. Get-ChildItem $Drive\* -Recurse -Filter "delete.txt"

This line uses the Get-ChildItem cmdlet to recursively search for files in the specified drive. The $Drive\* syntax specifies the root directory of the drive, while the -Recurse parameter ensures that all subdirectories are searched as well. The -Filter parameter specifies the file name to search for, in this case, "delete.txt".



5. | Remove-Item -Force

This line uses the pipeline operator (|) to pass the output of the Get-ChildItem cmdlet to the Remove-Item cmdlet. The Remove-Item cmdlet is responsible for deleting files. The -Force parameter ensures that files are deleted without prompting for confirmation.



Instances where this script can be used:

1. Cleaning up temporary files: Temporary files tend to accumulate on various drives over time. This script can be used to search for and delete specific temporary files, helping to free up disk space and improve system performance.


2. Removing sensitive files: If you have sensitive files that you need to remove from multiple drives, this script can be a handy tool. By specifying the file name and running the script, you can ensure that the designated files are securely deleted from all targeted drives.


3. Uninstalling software remnants: After uninstalling software, there might be leftover files or folders on the system. By modifying the script to search for and delete specific remnants associated with the uninstalled software, you can ensure a thorough cleanup.


4. Removing malware artifacts: In the unfortunate event of a malware infection, this script can aid in the removal of specific malware artifacts. By identifying the files associated with the malware and running the script, you can systematically delete them from all affected drives.



Conclusion:

PowerShell provides a robust and efficient way to automate tasks in the Windows environment. The script explained in this blog post enables you to search for and delete files based on specific criteria. By understanding each line of the script, you can tailor it to your specific needs and leverage it in various scenarios, such as cleaning up temporary files, removing sensitive data, uninstalling software remnants, or eliminating malware artifacts. PowerShell's versatility makes it an invaluable tool for system administrators and power users alike.


Recent Posts

See All
bottom of page