Hey
I'm a Sysadmin and my users are getting this error on my production box.
It works fine on the dev box.
There is a script that is run that generates this error.
Production is clustered environment using Microsoft Application Center.
This was working before and starting throwing this error about 15 days ago.
any help would be much appreciated
thanks
Microsoft VBScript runtime error '800a0046'
Permission denied
/vac_req_staging/testfile.asp, line 4
The Script is
<%@ Language=VBScript %>
<%
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objLogFile = objFSO.CreateTextFile("\\namf233192\ATS_infinium\t est.txt")
objLogFile.Writeline "Its working"
objLogFile.Close
%>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<P> </P>
</BODY>
</HTML>