I get "Permission Denied" error code when execute the following script from
HTML page.
The error happened on ShellExecute call.
I have tried it on Win 2000 PRO, WIn XP Home SP2 with the latest version of
IE and SPacks.
What is the problem??
The test file c:/aaa.txt is OK and I have administrator account
<P><INPUT type=button value="test button" id=button4 name=button4></P>
<SCRIPT LANGUAGE="VBScript">
<!--
Sub button4_onclick()
Dim eShell
Set eShell = CreateObject("Shell.Application")
eShell.ShellExecute "c:/aaa.txt", "", "", "open", 1
End Sub
-->
</SCRIPT>