Export Files List (PowerShell) into Excel

1st Official Post
  • 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:

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

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

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!