Prøv dette, og husk lige at lave en fil forbudt.txt med mindst et mappenavn i  - den skal ligge i samme mappe som scriptet
<% 
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.OpenTextFile(Server.MapPath("forbudt.txt",)1)
   Do until f.AtEndOfStream 
      linie=f.ReadLine
      poster=split(linie,",")
   Loop 
   f.Close
strPathInfo = GLOBAL_SITE_FOLDER 
strPhysicalPath = Server.MapPath(strPathInfo) 
Set objFSO = CreateObject("Scripting.FileSystemObject") 
Set objFolder = objFSO.GetFolder(strPhysicalPath) 
For each Folder in objFolder.SubFolders 
for x=lbound(poster) to Ubound(poster)
   if poster(x)=Folder.Name then forbudt=1   
next
If Left(Folder.Name,1)<>"_" or forbudt=1 Then 
else 
Response.Write Folder.Name & "<br> 
end if 
End If 
Next 
Set objFSO = Nothing 
%>