473,387 Members | 1,578 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,387 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 2527
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: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.