I am a new at VBScripting and need some help...I am trying to create a script that will monitor a folder for any file older than 1 hour, this is what I have so far:
'Desc :Check files age
' Return age of files in the folder, -1 if it encounter error.
'USAGE :FNChkFileAge [path] [file]
'
Dim Fname,oShell, FSO
path = Wscript.Argumen ts(0)
file = Wscript.Argumen ts(1)
...