Facebook
From C, 1 Year ago, written in Plain Text.
This paste is a reply to Powershell from MOi - view diff
Embed
Download Paste or View Raw
Hits: 209
  1. $folders = Get-Content -Path "./asurveiller.txt"
  2.  
  3. foreach ($folder in $folders) {
  4.     $fichiers = Get-ChildItem -Path $folder -Recurse -File
  5.     foreach ($fic in $fichiers) {
  6.         $hash = Get-FileHash -Path $fic.FullName -Algorithm SHA256
  7.         Add-Content -Path "./resultat.txt" -Value "$($hash.Hash)  $($fic.FullName)"
  8.     }
  9. }

Replies to Re: Powershell rss

Title Name Language When
Re: Re: Powershell Moi text 1 Year ago.