Skip to content

Instantly share code, notes, and snippets.

@ngbrown
Created May 3, 2023 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngbrown/deb98d36e0d3e78e70acf6b85bc3825b to your computer and use it in GitHub Desktop.
Save ngbrown/deb98d36e0d3e78e70acf6b85bc3825b to your computer and use it in GitHub Desktop.
Export list of files with PowerShell
Get-ChildItem "\\?\C:\*.*" -Recurse | Select-Object FullName,LastWriteTime,Length | Export-Csv "$([Environment]::GetFolderPath("Desktop"))\File-Listing.csv" -NoTypeInformation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment