Ask a Question related to ASP.NET Security, Design and Development.
-
cct #1
Process can't run in ASP.Net
Dear all,
Running on on Windows XP Professionals with SP2.
Below code can run well in Consol application with task scheduler
successfully created.
But when I run in Asp.net,
with windows authentication selected and I'm login as Administrator,
No error prompt but no task scheduler has been created.
*******************
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = @"schtasks.exe";psi2.Arguments = @" /create /tn abc /tr
""c:/test.exe 282"" /sc once /st ""10:10:00"" /sd ""01/07/2005"" /ru
""System""";
psi.UseShellExecute = false;
psi.WindowStyle=ProcessWindowStyle.Hidden;
Process process = Process.Start(psi);
process.WaitForExit();
process.Close();
****************
do anyone know?
Many Thanks.
cct Guest
-
CFFILE upload error - The process cannot access the filebecause it is being used by another process
I get this error intermitently when trying to upload a file. <cffile action='upload' ... To make sure there was nothing wrong with the file, i... -
#37998 [Asn->Fbk]: Parent process lost MySQLi connection after child process gone
ID: 37998 Updated by: tony2001@php.net Reported By: dbs at is dot ua -Status: Assigned +Status: ... -
Win32::Process, SetProcessAffinityMask for an existing process =perl crash
Hi! Was planning to use Win32::Process to set the ProcessAffinityMask of some processes but this lead to pure and simple crash of perl.exe. ... -
Win32::Process Kill Process in Windows ME
Hello, I want to kill a Process in Windows ME, which I have started. I have executed the following lines in XP and it works. I execute this in... -
Problem: Process.GetProcessesByName : Couldn't get process information from remote machine
As part of an ASP.NET application, I am creating an Excel spreadsheet using my .NET component. On my machine (win2K) I always get a... -
Raterus #2
Re: Process can't run in ASP.Net
I can tell you that when you start a process like this in asp.net, it will be ran as the "ASPNET" user, regardless of which authentication/impersonation you have configured. I've never found a way to pass their authentication on to this process.
"cct" <cctan@peoplecosoftware.com> wrote in message news:O7jEk5I9EHA.2552@TK2MSFTNGP09.phx.gbl...> Dear all,
>
> Running on on Windows XP Professionals with SP2.
> Below code can run well in Consol application with task scheduler
> successfully created.
>
> But when I run in Asp.net,
> with windows authentication selected and I'm login as Administrator,
> No error prompt but no task scheduler has been created.
>
> *******************
> ProcessStartInfo psi = new ProcessStartInfo();
> psi.FileName = @"schtasks.exe";psi2.Arguments = @" /create /tn abc /tr
> ""c:/test.exe 282"" /sc once /st ""10:10:00"" /sd ""01/07/2005"" /ru
> ""System""";
>
>
> psi.UseShellExecute = false;
> psi.WindowStyle=ProcessWindowStyle.Hidden;
>
> Process process = Process.Start(psi);
> process.WaitForExit();
> process.Close();
>
> ****************
> do anyone know?
>
> Many Thanks.
>
>
>Raterus Guest
-
Saravana #3
Re: Process can't run in ASP.Net
Check out this support link, this might help you.
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;555134[/url]
--
-Saravana
[url]http://dotnetjunkies.com/WebLog/saravana/[/url]
[url]www.ExtremeExperts.com[/url]
"Raterus" <raterus@hotmail.com> wrote in message
news:uJW47bN9EHA.3376@TK2MSFTNGP12.phx.gbl...
I can tell you that when you start a process like this in asp.net, it will
be ran as the "ASPNET" user, regardless of which
authentication/impersonation you have configured. I've never found a way to
pass their authentication on to this process.
"cct" <cctan@peoplecosoftware.com> wrote in message
news:O7jEk5I9EHA.2552@TK2MSFTNGP09.phx.gbl...> Dear all,
>
> Running on on Windows XP Professionals with SP2.
> Below code can run well in Consol application with task scheduler
> successfully created.
>
> But when I run in Asp.net,
> with windows authentication selected and I'm login as Administrator,
> No error prompt but no task scheduler has been created.
>
> *******************
> ProcessStartInfo psi = new ProcessStartInfo();
> psi.FileName = @"schtasks.exe";psi2.Arguments = @" /create /tn abc /tr
> ""c:/test.exe 282"" /sc once /st ""10:10:00"" /sd ""01/07/2005"" /ru
> ""System""";
>
>
> psi.UseShellExecute = false;
> psi.WindowStyle=ProcessWindowStyle.Hidden;
>
> Process process = Process.Start(psi);
> process.WaitForExit();
> process.Close();
>
> ****************
> do anyone know?
>
> Many Thanks.
>
>
>
Saravana Guest



Reply With Quote

