Started Process Hangs

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

  1. #1

    Default Started Process Hangs

    Whenever I start an application from ASP.NET, the exe hangs, with Task
    manager showing no cpu time.

    Every exe I've tried hangs in the same way (notepad, cmd, ms access).
    What runs is a .net exe and a .bat file, but the program they start hangs!

    Same results with system.diagnostics.process and shell.

    I really need help on this one... Thanks


    JTF Guest

  2. Similar Questions and Discussions

    1. Acrobat 6.0 Hangs when started
      Acrobat sends cpu usage to 100% and hangs on splash screen
    2. #21926 [NoF->WFx]: Apache process hangs
      ID: 21926 Updated by: sniper@php.net Reported By: arinto at almedina dot net -Status: No Feedback +Status: ...
    3. #21926 [Com]: Apache process hangs
      ID: 21926 Comment by: huberfelix at web dot de Reported By: arinto at almedina dot net Status: No Feedback Bug...
    4. #21926 [Opn->Fbk]: Apache process hangs
      ID: 21926 Updated by: iliaa@php.net Reported By: arinto at almedina dot net -Status: Open +Status: ...
    5. Can't reinstall Photoshop - process hangs
      I've been trying to reinstall photoshop 5.5 . It has been working until now, then just got hung when I tried to launch it. It refused to launch (just...
  3. #2

    Default Re: Started Process Hangs

    System.Diagnostics.Process should work for command line apps.
    Apps that display UI will generally not work, because ASP.NET does not have
    a desktop to run under.

    To give it access to a desktop, thereby allowing most apps to run, try this:
    Go into control panel, administrative tools, services.
    Find all the WWW related services and, in their properties, check the
    checkbox that says "Allow Service to Interact with Desktop"

    Also, make sure the ASPNET user account has the necessary permissions to the
    program's folder and any other folders that that program uses.

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


    "JTF" <john_finley@amsec.com> wrote in message
    news:uk6cGyGYDHA.736@TK2MSFTNGP09.phx.gbl...
    > Whenever I start an application from ASP.NET, the exe hangs, with Task
    > manager showing no cpu time.
    >
    > Every exe I've tried hangs in the same way (notepad, cmd, ms access).
    > What runs is a .net exe and a .bat file, but the program they start hangs!
    >
    > Same results with system.diagnostics.process and shell.
    >
    > I really need help on this one... Thanks
    >
    >

    Steve C. Orr, MCSD Guest

  4. #3

    Default Re: Started Process Hangs

    hi all,
    I tried the above but it doesn't work!!!

    any help is appreciated
    thank you
    ttrad is offline Junior Member
    Join Date
    Oct 2011
    Posts
    1

Posting Permissions

  • You may not post new threads
  • You may 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