Hello,

I'm scanning files on a server and getting all their attributes (size, folder, owner, last accessed ...etc) and putting those in a Database, all this in a *.vbs file.
I'm use the following objects: "Scripting.FileSystemObject" and "Shell.Application"
They have all the functions I need, except the one wich would give me the "Size On Disk".
Fact is that the server i'm scanning uses compression (ntfs compressed drive) so the "Size on Disk" is way smaller than the size...
ex, for a *.xls file:
size: 994 KB
size on disk: 420 KB

is there any way I could get this information with vbscript?