Please wait,
Processing your request...

    0%
  Business logo VanSoest.it
  ... | Selecteer de Nederlandse taal |
Sharing is caring
| Print this page. | Linkedin page of Johan van Soest

React: Postcard image. Click this to mail to Johan

WebHalla
 Content
  Management
   System

ICT-Hotlist Topic

PowerShell script to find files newer or equal than a specified date containing a text string.

This PowerShell script finds files newer or equal than a specified date ($Date) and containing a search string ($SearchStr) in the specified file path ($FilePath). It replaces the ForFiles and FindStr command line or batch commands as they cannot handle UNC paths.

 ###############################################################################################
 # This PowerShell script finds files newer or equal than $Date and containing a search string 
 # in the specified (UNC) file path.
 #
 # (C)Copyrights 2016 - 2024 vanSoest.it by J.P.G. van Soest
 ###############################################################################################

 # Fill in the date 
 $Date = "2016-09-12"

 #Fill in the search string
 $SearchStr = "HP LaserJet 4"

 #Fill in the path and mask
 $FilePath = "\\nlaalfs1\temp$\logging\*.txt"
 
 $Files = Get-ChildItem -Path $FilePath | ? {$_.LastWriteTime -ge $Date}
 foreach($File in $Files){
    Select-String $SearchStr $File
 }
This script produces the following (example) output to screen:
 \\nlaalfs1\temp$\logging\2016\09\12-dump.txt:2:HP LaserJet 4P
 \\nlaalfs1\temp$\logging\2016\10\10-dump.txt:14:HP LaserJet 4P
 \\nlaalfs1\temp$\logging\2016\11\14-dump.txt:3:HP LaserJet 4P
 \\nlaalfs1\temp$\logging\2016\12\12-dump.txt:9:HP LaserJet 4P 
Of course the tool DateFormat can be used to run the script with variable dates (Begin or End of quarter/month etc.)
You may vote your opinion about this article:


Scripts and programming examples disclaimer

Unless stated otherwise, the script sources and programming examples provided are copyrighted freeware. You may modify them, as long as a reference to the original code and hyperlink to the source page is included in the modified code and documentation. However, it is not allowed to publish (copies of) scripts and programming examples on your own site, blog, vlog, or distribute them on paper or any other medium, without prior written consent.
Many of the techniques used in these scripts, including but not limited to modifying the registry or system files and settings, impose a risk of rendering the Operating System inoperable and loss of data. Make sure you have verified full backups and the associated restore software available before running any script or programming example. Use these scripts and programming examples entirely at your own risk. All liability claims against the author in relation to material or non-material losses caused by the use, misuse or non-use of the information provided, or the use of incorrect or incomplete information, are excluded. All content is subject to change and provided without obligation.
Generated by WebHalla™ Version 0.1.e.7 : Friday 19-4-2024 © Copyright 1995-2024 ing. Johan P.G. van Soest CIPM Certified Privacy Information Manager
Response Form    Cookie- and Privacy statement    Responsible Disclosure procedure
Weather in Waalre by OpenWeatherMap logo light rain
Temperature 7.15 °C light rain
Wind chill 5.03 °C light rain
Humidity 79 % light rain
Air pressure 1018 hPa light rain
Wind speed 3.09 m/s light rain
Wind direction South West South West light rain
Sun Rise 6:33 Sun Rise
Sun Set 20:40 Sun Set
Updated:2024-04-19 00:35:00 light rain
| Current user: Guest | Login |