473,320 Members | 1,969 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

windows services

cs
I noticed there is some .net services on my winxp. One or two mention the
CLR. Does that mean that my .net apps/services wont run before those
services start?
I need to run my service as early on as possible, it doesnt even need to be
a service if there is a way to run .net apps before that, anyone knows what
or where?
Nov 15 '05 #1
6 2521
cs,

What services are you talking about? I don't notice any services that
are started up on my machine as a result of .NET. Can you elaborate?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eW**************@TK2MSFTNGP12.phx.gbl...
I noticed there is some .net services on my winxp. One or two mention the
CLR. Does that mean that my .net apps/services wont run before those
services start?
I need to run my service as early on as possible, it doesnt even need to be a service if there is a way to run .net apps before that, anyone knows what or where?

Nov 15 '05 #2
cs
on the registry, under services
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es
there is .NET CLR Data and .NET CLR Networking and .NETFramework
there is also a couple for ASP.NET
What I dont know is if those are services or what, and if my c# service can
run before them? regardless of that I need to know whats the earliest I can
run a .net app, whether its a service or not.

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:uN**************@TK2MSFTNGP11.phx.gbl...
cs,

What services are you talking about? I don't notice any services that
are started up on my machine as a result of .NET. Can you elaborate?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eW**************@TK2MSFTNGP12.phx.gbl...
I noticed there is some .net services on my winxp. One or two mention the CLR. Does that mean that my .net apps/services wont run before those
services start?
I need to run my service as early on as possible, it doesnt even need to

be
a service if there is a way to run .net apps before that, anyone knows

what
or where?


Nov 15 '05 #3
cs,

If you look, those are not services, but performance counters. You
shouldn't have to worry about them. If you look at the services section
under computer management, you will notice that those do not appear.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eA**************@tk2msftngp13.phx.gbl...
on the registry, under services
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es
there is .NET CLR Data and .NET CLR Networking and .NETFramework
there is also a couple for ASP.NET
What I dont know is if those are services or what, and if my c# service can run before them? regardless of that I need to know whats the earliest I can run a .net app, whether its a service or not.

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:uN**************@TK2MSFTNGP11.phx.gbl...
cs,

What services are you talking about? I don't notice any services that
are started up on my machine as a result of .NET. Can you elaborate?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eW**************@TK2MSFTNGP12.phx.gbl...
I noticed there is some .net services on my winxp. One or two mention the CLR. Does that mean that my .net apps/services wont run before those
services start?
I need to run my service as early on as possible, it doesnt even need

to be
a service if there is a way to run .net apps before that, anyone knows

what
or where?



Nov 15 '05 #4
cs
thanks thats very useful information (shows how little I know about
services)
I still have the issue that my service is not running early enough. But from
what you said I am guessing my service could be the first one to run if it
had to, as in there is no such .net service that it must wait for?

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:%2****************@TK2MSFTNGP09.phx.gbl...
cs,

If you look, those are not services, but performance counters. You
shouldn't have to worry about them. If you look at the services section
under computer management, you will notice that those do not appear.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eA**************@tk2msftngp13.phx.gbl...
on the registry, under services
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es
there is .NET CLR Data and .NET CLR Networking and .NETFramework
there is also a couple for ASP.NET
What I dont know is if those are services or what, and if my c# service can
run before them? regardless of that I need to know whats the earliest I

can
run a .net app, whether its a service or not.

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote

in
message news:uN**************@TK2MSFTNGP11.phx.gbl...
cs,

What services are you talking about? I don't notice any services that are started up on my machine as a result of .NET. Can you elaborate?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eW**************@TK2MSFTNGP12.phx.gbl...
> I noticed there is some .net services on my winxp. One or two mention
the
> CLR. Does that mean that my .net apps/services wont run before those
> services start?
> I need to run my service as early on as possible, it doesnt even
need to be
> a service if there is a way to run .net apps before that, anyone

knows what
> or where?
>
>



Nov 15 '05 #5
cs,

No, you are right, there is no .NET service it has to wait for.
However, depending on the components in your application, you might have to
wait for other services. For example, if you are accessing a SQL server
database on the same machine, then you need to make sure that the SQL server
service starts up first.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:en**************@TK2MSFTNGP09.phx.gbl...
thanks thats very useful information (shows how little I know about
services)
I still have the issue that my service is not running early enough. But from what you said I am guessing my service could be the first one to run if it
had to, as in there is no such .net service that it must wait for?

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:%2****************@TK2MSFTNGP09.phx.gbl...
cs,

If you look, those are not services, but performance counters. You
shouldn't have to worry about them. If you look at the services section
under computer management, you will notice that those do not appear.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eA**************@tk2msftngp13.phx.gbl...
on the registry, under services
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es
there is .NET CLR Data and .NET CLR Networking and .NETFramework
there is also a couple for ASP.NET
What I dont know is if those are services or what, and if my c# service
can
run before them? regardless of that I need to know whats the earliest
I
can
run a .net app, whether its a service or not.

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com>
wrote in
message news:uN**************@TK2MSFTNGP11.phx.gbl...
> cs,
>
> What services are you talking about? I don't notice any
services that
> are started up on my machine as a result of .NET. Can you

elaborate? >
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
> news:eW**************@TK2MSFTNGP12.phx.gbl...
> > I noticed there is some .net services on my winxp. One or two

mention the
> > CLR. Does that mean that my .net apps/services wont run before those > > services start?
> > I need to run my service as early on as possible, it doesnt even need
to
> be
> > a service if there is a way to run .net apps before that, anyone

knows > what
> > or where?
> >
> >
>
>



Nov 15 '05 #6
cs
yeah, the only thing my app is doing is modifying a registry key but this
has to be done before the key is read and that key appears to be read way
way early on the chain, maybe even before the services are run.
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:%2****************@TK2MSFTNGP11.phx.gbl...
cs,

No, you are right, there is no .NET service it has to wait for.
However, depending on the components in your application, you might have to wait for other services. For example, if you are accessing a SQL server
database on the same machine, then you need to make sure that the SQL server service starts up first.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:en**************@TK2MSFTNGP09.phx.gbl...
thanks thats very useful information (shows how little I know about
services)
I still have the issue that my service is not running early enough. But from
what you said I am guessing my service could be the first one to run if it
had to, as in there is no such .net service that it must wait for?

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote

in
message news:%2****************@TK2MSFTNGP09.phx.gbl...
cs,

If you look, those are not services, but performance counters. You shouldn't have to worry about them. If you look at the services section under computer management, you will notice that those do not appear.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
news:eA**************@tk2msftngp13.phx.gbl...
> on the registry, under services
> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es
> there is .NET CLR Data and .NET CLR Networking and .NETFramework
> there is also a couple for ASP.NET
> What I dont know is if those are services or what, and if my c#

service can
> run before them? regardless of that I need to know whats the
earliest I can
> run a .net app, whether its a service or not.
>
>
>
> "Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
> message news:uN**************@TK2MSFTNGP11.phx.gbl...
> > cs,
> >
> > What services are you talking about? I don't notice any services that
> > are started up on my machine as a result of .NET. Can you elaborate? > >
> >
> > --
> > - Nicholas Paldino [.NET/C# MVP]
> > - mv*@spam.guard.caspershouse.com
> >
> > "cs" <[rem]casolorz[rem]@hot[rem]mail.com> wrote in message
> > news:eW**************@TK2MSFTNGP12.phx.gbl...
> > > I noticed there is some .net services on my winxp. One or two

mention
> the
> > > CLR. Does that mean that my .net apps/services wont run before those > > > services start?
> > > I need to run my service as early on as possible, it doesnt even

need
to
> > be
> > > a service if there is a way to run .net apps before that, anyone

knows
> > what
> > > or where?
> > >
> > >
> >
> >
>
>



Nov 15 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Stefan Hinz | last post by:
Degan, jumping in to try and solve some problems that look pretty obvious to me ... > #options for default service (mysqld2) > (mysqld2) It should be , not (mysqld2).
8
by: Bill Sonia | last post by:
I've written a Windows Service to send e-mails on events like OnStart, OnStop, OnShutDown using System.Web.Mail. It works for everything but OnShutdown. My guess is that for OnShutDown, once my...
3
by: illegal.prime | last post by:
Hi all, I have a service that needs to start a regular windows application. I'm running the service as ServiceAccount.LocalSystem. But, when it starts the process (using Process.Start) the GUI...
5
by: =?Utf-8?B?dmlzaHJ1dGg=?= | last post by:
This code works fine in Windows Application. In Windows Application, I am able to zip the image files properly and it totally contains 900MB My problem is the same code which I used in my Windows...
2
by: =?Utf-8?B?dmlzaHJ1dGg=?= | last post by:
Hi, I have 2 applications running, one Windows application project and the other windows services project. I want to call my Windows application in my windows services. I want to run them as...
1
by: =?Utf-8?B?dmlzaHJ1dGg=?= | last post by:
Hi, I have 2 applications running, one Windows application project and the other windows services project. I want to call my Windows application in my windows services. I want to run them as...
5
by: dm3281 | last post by:
I'm really starting to hate writing services -- or trying to, anyway. Why do I need to rename my project to the service name? Why do I need to set the "ServiceName" property to my service name?...
0
AmberJain
by: AmberJain | last post by:
Windows Autorun FAQs: Overview NOTE- This complete article on "Windows Autorun FAQs" applies theoretically to all Windows NT-based OSes till Windows Vista (and probably Vista's successors too)....
0
AmberJain
by: AmberJain | last post by:
Windows Autorun FAQs: List of autostart locations Linked from the Original article- "Windows Autorun FAQs: Description". Que: Can you list all the autostart locations for windows? Ans: Here is...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.