Export Files List (...
 
Notifications
Clear all

Export Files List (PowerShell) into Excel

1 Posts
1 Users
0 Reactions
19 Views
Frank Schroeder
(@iseetwizard)
Estimable Member Admin
Joined: 5 years ago
Posts: 60
Topic starter  

Sometimes it is useful to get the files list of a folder into an Excel Sheet.

This is very simple to realize thanks to Powershell.

You just need to import a module and enter the following:

 

Install-Module -Name ImportExcel
(Get-ChildItem C:\FolderName -file).BaseName | Export-excel folderlist.xlsx

 

Of course, you can name your file how you want.


   
Quote