TheCandyman
Technical User
I'm trying to do a simple back file which does IISreset command. I set the ISR_ permissions to full and I still get this permissions error. I'm not sure what else i need to change permissions on???
Error
file.bat
ASP
Error
Code:
Microsoft VBScript runtime error '800a0046'
Permission denied
/testRestart.asp, line 3
file.bat
Code:
@echo off
iisreset /stop /noforce
iisreset /start
ASP
Code:
<%
set wshell = CreateObject("WScript.Shell")
wshell.run "c:\file.bat"
set wshell = nothing
%>