printing file lists

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have been asked to provide a print out of a user's temporary internet files
listing.

Does anyone know how to do this without copying screenshots into word?
 
Google for a utility program or use the command prompt
[start/run cmd] and the tree /f >prn or .temp.txt command
to save a text file.


--
The people think the Constitution protects their rights;
But government sees it as an obstacle to be overcome.
some support
http://www.usdoj.gov/olc/secondamendment2.htm



|I have been asked to provide a print out of a user's
temporary internet files
| listing.
|
| Does anyone know how to do this without copying
screenshots into word?
 
=?Utf-8?B?UEI=?= said:
I have been asked to provide a print out of a user's temporary internet files
listing.

That could be 6 gigs of info. Or even more. It may take a ream of paper.
 
PB said:
I have been asked to provide a print out of a user's temporary internet files
listing.

Does anyone know how to do this without copying screenshots into word?



From the command prompt (Start > Run > Cmd.exe), simply change to
the desired directory and type "dir > filelist.txt" or "dir > lpt1,"
just as you used to do in DOS. Any of the switches for the DIR command
(type "dir /?") will work with this command, if you wish to modify the
output. You can then subsequently edit the resulting text file using
NotePad, WordPad, Word, etc.

Alternatively:

HOW TO Add a Print Directory Feature for Folders in Windows XP
http://support.microsoft.com/?kbid=321379



--

Bruce Chambers

Help us help you:



You can have peace. Or you can have freedom. Don't ever count on having
both at once. - RAH
 
Copy below lines into a text file and name it something.vbs. This is a shell object lister not a file lister. It shows Explorer's view of the system. So it shows official files in TIF (eg pages that didn't complete downloading are in TIF but not officially - they are ignored by explorer), It shows the filename on the web server (not what windows has named it), the web site it comes from, the expiry date, and the modified/created/accessed dates. type of file, and size.

It creates a text file on the desktop that is to be imported into Excel for formatting, sorting, or filtering. To use drop a folder onto the file.


Set objShell = CreateObject("Shell.Application")
Set Ag=Wscript.Arguments
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\" & Wscript.ScriptName & "\", Chr(34) & Wscript.ScriptFullName & Chr(34)
WshShell.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\" & Left(Wscript.ScriptName, Len(Wscript.ScriptName)-3) & "exe" & "\", Chr(34) & Wscript.ScriptFullName & Chr(34)
Set Fldr=objShell.NameSpace(Ag(0))
Set FldrItems=Fldr.Items
Set fso = CreateObject("Scripting.FileSystemObject")
Set DeskFldr=objShell.Namespace(16)
FName=fso.buildpath(DeskFldr.self.path, "Folder Property List.txt")
Set ts = fso.OpenTextFile(FName, 8, vbtrue)
For x = 0 to 50
t1 = t1 & Fldr.GetDetailsOf(vbnull, x) & " (Shell)" & vbtab
Next
ts.write FLDR.self.path &vbcrlf
ts.Write T1 & vbcrlf
T1=""
For Each FldrItem in FldrItems
For x = 0 to 50
t1 = t1 & Fldr.GetDetailsOf(FldrItem, x) & vbtab
Next
t1=t1 & vbcrlf
ts.Write T1
T1=""
Next
 
Back
Top