I have a dll on my web server that creates a text file on the same webserver using FSO.
Set TxtFile = fso.CreateTextFile(File_Name, True)
This works fine when I'm logged in or a sys Admin is logged in, but when using a typical users account I get permission denied.
Does anyone know what is stopping the creation of this text file?
Set TxtFile = fso.CreateTextFile(File_Name, True)
This works fine when I'm logged in or a sys Admin is logged in, but when using a typical users account I get permission denied.
Does anyone know what is stopping the creation of this text file?