Cheers for the hint sparrow

I wrote a little script that will change all files in a directory to normal recursively

Code:
For Each item In System.IO.Directory.GetFiles(tempdir)
System.IO.File.SetAttributes(item, IO.FileAttributes.Normal)
Next