| Re: Script to print all files in folder and subfolders with WMI/VBS it's a pain in the ass (but since I'm dead at work, I might as well give it a shot when I go to work today)
If you just need it enumerated and VBS isn't a requirement, how about
Start -> Run -> CMD
dir /s NAMEOFDIRECTORY > c:/directory.txt
Open c:/directory.txt in notepad or whatever. Hit PRINT.
I'd use
dir /s /b NAME > c:/directory.txt
since it'll just spit back filenames |