Export Liste fichier
$filepath = "E:\liste_fichiers_exe.csv"
Get-ChildItem -Path E:\ -Recurse -Filter *.exe | Select-Object FullName | Export-Csv -Path $filepath -NoTypeInformation
$filepath = "E:\liste_fichiers_exe.csv"
Get-ChildItem -Path E:\ -Recurse -Filter *.exe | Select-Object FullName | Export-Csv -Path $filepath -NoTypeInformation
No Comments