Hello,
My script...
+++++++++++++
...
set WshShell = CreateObject("WScript.Shell")
set WScriptObj = Server.CreateObject("WScript.Shell")
inReturn=WshShell.run("C:\Program files\Syslog\Registration.exe",0,true)
' test with other process inReturn=WshShell.run("c:\windows\system32\cmd.exe",0,true)
' test with other process inReturn=WshShell.run("...notepad.exe",0,true)
...
-------------------
This script work from many years on Windows 2000 Server and IIS 5.0.
Application was migrated to new server (Windows 2003 R2 SP2 & IIS 6.0).
All is functionnaly except one execution problem:
+++++++++++++
Microsoft VBScript runtime error '800a0046'
Permission denied
/register_form.asp, line 34
-------------------
Line 34 is 'inReturn=WshShell.run("C:\Program files\Syslog\Registration.exe",0,true)'.
The folder '"C:\Program files\Syslog\' where application executable is, was received full authorization
for:
everyone
Internet guest account (IUSR_...)
Network service
Network
Users
...
In line 34 I can use many prgm with same result (Permission Denied) !!!
Any ideas...
Thank's...