Shell from within a CGI program will work with XP, but not Vista.
Anyone know a way to do this with Vista?
The nice thing about it is that I can pop up a message box or
do about anything based upon who hits a page. The work around
with Vista so far has been to monitor a page and then perform the
action. The XP server cgi program just executes my program(s).
Testing with Abyss.
Shell to the program below like this pid = shell("execute.exe msgbox.exe"
This also works on XP, but on Vista the msgbox.exe keeps running in task manager.
I will attempt running something that doesn't need user feedback.
Anyone know a way to do this with Vista?
The nice thing about it is that I can pop up a message box or
do about anything based upon who hits a page. The work around
with Vista so far has been to monitor a page and then perform the
action. The XP server cgi program just executes my program(s).
Testing with Abyss.
Shell to the program below like this pid = shell("execute.exe msgbox.exe"
This also works on XP, but on Vista the msgbox.exe keeps running in task manager.
I will attempt running something that doesn't need user feedback.
Code:
REM cgi program does this COMPILE EXE #DIM ALL FUNCTION PBMAIN () AS LONG LOCAL pid AS DWORD pid = SHELL(COMMAND$) END FUNCTION
Comment