Error:: Activex componet can not create object:"WScript.Shell"

Ask a Question related to ASP.NET, Design and Development.

  1. #1

    Default Error:: Activex componet can not create object:"WScript.Shell"

    I am trying to use the shell object to send keys to the
    explorer browser to run the send page funcion.

    I am receiving the above error only when I put my html
    file in the web server folder.However if I am runing the
    file local it will work
    Any reason, why when the file is in the web server folder
    the create object failed to created the shell object.

    Systax:
    <html>
    <head>
    <body>
    <Form name = myform>
    <input type = button onclick = "Sendmy()" value
    = "Axiolog Email">
    </form>
    </body>
    </head>
    <script langauage = "Javascript">
    function Sendmxy()
    {
    alert("ASDFSA")
    var wshell = WScript.CreateObject("WScript.Shell")


    }

    </script>


    <SCRIPT Language=VBScript>

    Sub Sendmy()



    Dim WshShell
    dim intloop
    dim intCount
    dim intc
    Set WshShell = CreateObject("WScript.Shell")
    alert("Yes")

    WshShell.SendKeys("%(T)")




    WshShell.SendKeys("+(M)")

    WshShell.SendKeys("+(M)")
    WshShell.SendKeys("+(P)")



    End Sub

    </SCRIPT>


    </Html>


    sincerely yours


    Mike John
    Mike John Guest

  2. Similar Questions and Discussions

    1. Calling Acrobat file from WScript.Shell ActiveX object
      WinXP, Acrobat 6 When I type the name of a PDF file at the Windows command prompt, the file opens properly. Then I create the following JavaScript...
    2. VB runtime errors "ActiveX can't create object"
      How is the VB component compiled? Using 'unattended execution'? -- compatible web farm Session replacement for Asp and Asp.Net...
    3. HELP! "Access is denied to this object." - Server object error 'ASP 0178 : 80070005'
      Hi, When I try to do Server.CreateObject on an activeX DLL, I receive the following message: ''''''''''''''''''''''' Server object error 'ASP...
    4. server.createObject("wscript.shell") ... wShell.run ... stopped working...
      I used to be able to run the following ASP code on our corp machine (W2K Server Edition and IIS-5) and successfully send a net-msg to anyone on our...
    5. server.createobject("wscript.shell")
      How about: set wshell = server.createobject("wscript.shell") wshell.run "c:\file.bat " & x set wshell = nothing And then in your batch, use...
  3. #2

    Default Re: Error:: Activex componet can not create object:"WScript.Shell"

    Browser security settings may be hampering your attempts. To get it to
    work, the setting you'll most likely need to adjust can be found on the
    Internet Options dialog under the Tools dropdown menu in Internet Explorer.
    Go to the security tab. With local Intranet selected (assuming this is an
    intranet app), click the "Customize Level." button. Find the setting titled
    "Initialize and script ActiveX controls not marked as safe" and change the
    selection to either "enable" or "prompt."

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "Mike John" <RiadeAsleh@hotmail.com> wrote in message
    news:0dff01c34743$c9a41320$a001280a@phx.gbl...
    > I am trying to use the shell object to send keys to the
    > explorer browser to run the send page funcion.
    >
    > I am receiving the above error only when I put my html
    > file in the web server folder.However if I am runing the
    > file local it will work
    > Any reason, why when the file is in the web server folder
    > the create object failed to created the shell object.
    >
    > Systax:
    > <html>
    > <head>
    > <body>
    > <Form name = myform>
    > <input type = button onclick = "Sendmy()" value
    > = "Axiolog Email">
    > </form>
    > </body>
    > </head>
    > <script langauage = "Javascript">
    > function Sendmxy()
    > {
    > alert("ASDFSA")
    > var wshell = WScript.CreateObject("WScript.Shell")
    >
    >
    > }
    >
    > </script>
    >
    >
    > <SCRIPT Language=VBScript>
    >
    > Sub Sendmy()
    >
    >
    >
    > Dim WshShell
    > dim intloop
    > dim intCount
    > dim intc
    > Set WshShell = CreateObject("WScript.Shell")
    > alert("Yes")
    >
    > WshShell.SendKeys("%(T)")
    >
    >
    >
    >
    > WshShell.SendKeys("+(M)")
    >
    > WshShell.SendKeys("+(M)")
    > WshShell.SendKeys("+(P)")
    >
    >
    >
    > End Sub
    >
    > </SCRIPT>
    >
    >
    > </Html>
    >
    >
    > sincerely yours
    >
    >
    > Mike John

    Steve C. Orr, MCSD Guest

  4. #3

    Default Re: Error:: Activex componet can not create object:"WScript.Shell"

    I would assume that your problem has to do with permissions on the server.

    --
    Carsten Thomsen
    Enterprise Development with Visual Studio .NET, UML, and MSF
    [url]http://www.apress.com/book/bookDisplay.html?bID=105[/url]
    "Mike John" <RiadeAsleh@hotmail.com> wrote in message
    news:0dff01c34743$c9a41320$a001280a@phx.gbl...
    > I am trying to use the shell object to send keys to the
    > explorer browser to run the send page funcion.
    >
    > I am receiving the above error only when I put my html
    > file in the web server folder.However if I am runing the
    > file local it will work
    > Any reason, why when the file is in the web server folder
    > the create object failed to created the shell object.
    >
    > Systax:
    > <html>
    > <head>
    > <body>
    > <Form name = myform>
    > <input type = button onclick = "Sendmy()" value
    > = "Axiolog Email">
    > </form>
    > </body>
    > </head>
    > <script langauage = "Javascript">
    > function Sendmxy()
    > {
    > alert("ASDFSA")
    > var wshell = WScript.CreateObject("WScript.Shell")
    >
    >
    > }
    >
    > </script>
    >
    >
    > <SCRIPT Language=VBScript>
    >
    > Sub Sendmy()
    >
    >
    >
    > Dim WshShell
    > dim intloop
    > dim intCount
    > dim intc
    > Set WshShell = CreateObject("WScript.Shell")
    > alert("Yes")
    >
    > WshShell.SendKeys("%(T)")
    >
    >
    >
    >
    > WshShell.SendKeys("+(M)")
    >
    > WshShell.SendKeys("+(M)")
    > WshShell.SendKeys("+(P)")
    >
    >
    >
    > End Sub
    >
    > </SCRIPT>
    >
    >
    > </Html>
    >
    >
    > sincerely yours
    >
    >
    > Mike John

    CT Guest

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139