System.ComponentModel.Win32Exception: Access is denied

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

  1. #1

    Default System.ComponentModel.Win32Exception: Access is denied

    Hi,

    From a web application using following code iam executing an EXE.
    IPTCProcessInfo.FileName = "C:\\IMGExtractor.exe";

    IPTCProcessInfo.WindowStyle = ProcessWindowStyle.Maximized;

    Process IPTCProcess =
    Process.Start(IPTCProcessInfo.FileName,IPTCProcess Info.Arguments);

    It was working fine in Win2000 server.

    Now we have configured this web application in windows 2003 server.

    we are getting an error saying System.ComponentModel.Win32Exception:
    Access is denied

    at Process IPTCProcess =
    Process.Start(IPTCProcessInfo.FileName,IPTCProcess Info.Arguments);

    this may be because of security settings in Win 2003 server.We have added
    aspnet as an administartor

    Help required.

    thanks in advance

    Regards,

    Raju
















    Raju Guest

  2. Similar Questions and Discussions

    1. Hello Error with Web Services. No se puede serializar el miembro System.ComponentModel.MarshalByValueComponent.Site de tipo System.ComponentModel.ISite porque es una interfaz.
      Hello I have a solution iwth a web project and web service project I made a project and I compiled it and it has no errors. But when I try to add...
    2. System.UnauthorizedAccessException: Access is denied
      Hi, We have a simple 3 tier application which its core application is VC++ 6.0 ATL COM running as a server application in the COM+. An asp pipe is...
    3. Access is denied on DC System Event log
      When I am running computer management of any of our Windosw Server 2003 Domain controllers & I attempt to view the System Event Log, I recieve this...
    4. System.UnauthorizedAccessException: Access is denied.
      Exception Details: System.UnauthorizedAccessException: Access is denied. ASP.NET is not authorized to access the requested resource. Consider...
    5. access to system registry denied
      Hi, I have a problem with the method "EventLog.CreateEventSource" because I received one error message (access to system registry denied). I...
  3. #2

    Default Re: System.ComponentModel.Win32Exception: Access is denied

    Hi,

    just try this. on clicking of the .exe file, you can find whether it will show the error message
    Manikandan Guest

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