Return full path and size of users Temporary Internet Files folder

(imported topic written by JesseR91)

I am trying to create an analysis that shows the entire size of the Temporary Internet Files folder of each user but am stuck on how to ONLY display the folder size. My action is returning ALL files and folders under temporary internet file folder.

(pathname of it & " (" & (size of it / 1000) as string & " KB)") of (descendants whose (pathname of it as lowercase contains “temporary internet files”) of folder “documents and settings” of drives whose (type of it = “DRIVE_FIXED”))

(imported comment written by SystemAdmin)

Hi JesseR,

Try this:

(pathnames of it ,((sum of sizes of descendants of it)/1000) as string & " KB") of folders “temporary internet files” of folders of folders of folder “c:\documents and settings”

Not sure if this is the exact output you want though.

(imported comment written by JesseR91)

!!! I was close, it was the 'folders “Temporary Internet Files” line I was missing!!! Thanks!