1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
cd E:\aleman\barceladaantonescu\dplus $total = "" $total = foreach($fichero in ls E:\aleman\barceladaantonescu\dplus) { $rtf = New-Object System.Windows.Forms.RichTextBox $rtf.Rtf = [System.IO.File]::ReadAllText($fichero.FullName) $rtf.Text | Out-File $fichero.FullName.replace(".rtf",".txt") foreach($linea in gc $fichero.FullName.replace(".rtf",".txt")) { if($linea | Select-String ":") { $partir = $linea.split(":") $partir[1..$partir.Length] } else { } } } $total | Group-Object | Sort-Object Count |
