The code below works fine on several Windows (2003/XP) IIS servers and shows
all available file information of the images folder below the currect folder.
However at my ISP's servers the code just shows the basic info (filename,
size, dates) and doesn't show things like Title, Author, Dimensions
============================
<%
rootpath = Server.MapPath("./")
path = Server.MapPath("images/")
%>
<%
dim fs, folder
Set objShell = CreateObject ("Shell.Application")
Set objFolder = objShell.Namespace(path)
Set objFSO = CreateObject("Scripting.FileSystemObject")
Dim arrHeaders(39)
For i = 0 to 39
arrHeaders(i) = objFolder.GetDetailsOf (objFolder.Items, i)
Next
For Each strFileName in objFolder.Items
Response.Write( "=================================<br />" &
brstrFileName & "<br />")
For i = 0 to 39
'If i <> 9 then
Response.Write(arrHeaders(i) & ": " & objFolder.GetDetailsOf
(strFileName, i) ) & "<br />" & vbCrLf
'End If
Next
Next
%>
==========================
My ISP runs W2003 WebEdition servers.

Please help me to tell my ISP what he should do to solve my problem, because
he doesn't have clue (neither do I).