Re: trying to run executable on server
- From: Alexey Smirnov <alexey.smirnov@xxxxxxxxx>
- Date: 18 Apr 2007 11:14:58 -0700
On Apr 18, 2:51 pm, "Kevin O'Brien" <kevin...@xxxxxxx> wrote:
Does the aspnet account just needs read and execute rights to the folder?
Thank you,
Kevin
"Alexey Smirnov" <alexey.smir...@xxxxxxxxx> wrote in message
news:1176892385.675265.30680@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
On Apr 17, 11:46 pm, "Kevin O'Brien" <kevin...@xxxxxxx> wrote:
Hey guys,
I am trying to run an exe on the server with the following line and it is
not working. Any help would be greatly appreciated!
Thanks,
Kevin
Dim myProcess As Diagnostics.Process =
System.Diagnostics.Process.Start("d:\bin\discover.exe -r server01 -7
wxpmis01 -v 9")
The process.Start created a process under the asp.net account. Does
your account has rights to execute it?
http://groups.google.com/group/microsoft.public.dotnet.framework.aspn...- Hide quoted text -
- Show quoted text -
I think this should be enough...
Why do you think the process is not working? You don't see an output,
or it doesn't make any result?
I see, you have an arguments in the string
try to call it using as follows (I don't know if it makes any
difference)
Process.Start("d:\bin\discover.exe",
"-r server01 -7 wxpmis01 -v 9");
http://msdn2.microsoft.com/en-us/library/h6ak8zt5(VS.80).aspx
.
- References:
- trying to run executable on server
- From: Kevin O'Brien
- Re: trying to run executable on server
- From: Alexey Smirnov
- Re: trying to run executable on server
- From: Kevin O'Brien
- trying to run executable on server
- Prev by Date: Re: How can I make a table1.visible = false?
- Next by Date: Problem displaying binary (pdf) content in IIS7
- Previous by thread: Re: trying to run executable on server
- Next by thread: HTML White Space from Hidden Controls
- Index(es):
Relevant Pages
|