Print Folder and Directory Contents in Windows

PHOTO EMBED

Thu Dec 23 2021 13:56:32 GMT+0000 (Coordinated Universal Time)

Saved by @hankmorelock

@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad /p "%temp%\Listing"
del "%temp%\Listing"
exit
content_copyCOPY