How to findout which services are running in a user account

  • Thread starter Thread starter KCav
  • Start date Start date
K

KCav

When shutting down Windows has repeatidly had to savemy user infor to the
Registry while a service was still running.

How do I find out which services are running in a users account?
--
KC
 
"KCav" <KCav@discussions.microsoft.com> wrote in message
news:87B5E651-EE07-426C-9457-1026AF7E9EDF@microsoft.com...
> When shutting down Windows has repeatidly had to savemy user infor to the
> Registry while a service was still running.
>
> How do I find out which services are running in a users account?
> --
> KC


"Services" are by their nature not user-specific. They run
in the background for every user. To see what services
are currently active, try one of these methods:

- Click Start / Run / cmd {OK}
- Type this command:
net start {OK}

or:
- Click Start / Run / services.msc {OK}
 
Hi,

Click Start, click Run, and then type cmd /k net start then press enter.

Regards,
Bert Kinney MS-MVP Shell/User
http://bertk.mvps.org
Member: http://dts-l.org

KCav wrote:
> When shutting down Windows has repeatidly had to savemy user infor to the
> Registry while a service was still running.
>
> How do I find out which services are running in a users account?
 
Thank you for your reply.

I typed Net start from CMD prompt and it displayed a long list of serives.
If I could send the list to my printer I could useit as a check list and
commare what services are running with those running in local and system mode
rather tha user.

How can I send the output from Net start to my printer?
--
KC


"Pegasus (MVP)" wrote:

>
> "KCav" <KCav@discussions.microsoft.com> wrote in message
> news:87B5E651-EE07-426C-9457-1026AF7E9EDF@microsoft.com...
> > When shutting down Windows has repeatidly had to savemy user infor to the
> > Registry while a service was still running.
> >
> > How do I find out which services are running in a users account?
> > --
> > KC

>
> "Services" are by their nature not user-specific. They run
> in the background for every user. To see what services
> are currently active, try one of these methods:
>
> - Click Start / Run / cmd {OK}
> - Type this command:
> net start {OK}
>
> or:
> - Click Start / Run / services.msc {OK}
>
>
>
 
thank you for replying to my post.

When I ask wharservices are running how can I send the output to my printer?
--

--
KC


"Bert Kinney" wrote:

> Hi,
>
> Click Start, click Run, and then type cmd /k net start then press enter.
>
> Regards,
> Bert Kinney MS-MVP Shell/User
> http://bertk.mvps.org
> Member: http://dts-l.org
>
> KCav wrote:
> > When shutting down Windows has repeatidly had to savemy user infor to the
> > Registry while a service was still running.
> >
> > How do I find out which services are running in a users account?

>
 
Hi,

Right click on the title bar of the CMD window and choose "Select all".
Right click again and choose "Copy".
Now paste where you like.

Regards,
Bert Kinney MS-MVP Shell/User
http://bertk.mvps.org
Member: http://dts-l.org

KCav wrote:
> thank you for replying to my post.
>
> When I ask wharservices are running how can I send the output to my printer?
 
The general way to send Command Prompt stuff to the printer
goes like so:

net start > c:\test.txt
notepad c:\test.txt

Now print this file.


"KCav" <KCav@discussions.microsoft.com> wrote in message
news:495FEE27-1200-4F61-A218-22721FBEB81C@microsoft.com...
> Thank you for your reply.
>
> I typed Net start from CMD prompt and it displayed a long list of serives.
> If I could send the list to my printer I could useit as a check list and
> commare what services are running with those running in local and system
> mode
> rather tha user.
>
> How can I send the output from Net start to my printer?
> --
> KC
>
>
> "Pegasus (MVP)" wrote:
>
>>
>> "KCav" <KCav@discussions.microsoft.com> wrote in message
>> news:87B5E651-EE07-426C-9457-1026AF7E9EDF@microsoft.com...
>> > When shutting down Windows has repeatidly had to savemy user infor to
>> > the
>> > Registry while a service was still running.
>> >
>> > How do I find out which services are running in a users account?
>> > --
>> > KC

>>
>> "Services" are by their nature not user-specific. They run
>> in the background for every user. To see what services
>> are currently active, try one of these methods:
>>
>> - Click Start / Run / cmd {OK}
>> - Type this command:
>> net start {OK}
>>
>> or:
>> - Click Start / Run / services.msc {OK}
>>
>>
>>
 
You can use a redirector and send it to a text file then print the text
file:

Net start >c:\test.txt.

Now look for the file in the root (c:\) and just open it. You can also
send it to printer by name:

net start >"\\Computer Name\Printer Name"

John

KCav wrote:
> thank you for replying to my post.
>
> When I ask wharservices are running how can I send the output to my printer?
 
Thank you. It worked.
--
KC


"Bert Kinney" wrote:

> Hi,
>
> Click Start, click Run, and then type cmd /k net start then press enter.
>
> Regards,
> Bert Kinney MS-MVP Shell/User
> http://bertk.mvps.org
> Member: http://dts-l.org
>
> KCav wrote:
> > When shutting down Windows has repeatidly had to savemy user infor to the
> > Registry while a service was still running.
> >
> > How do I find out which services are running in a users account?

>
 
It worked . Thank you.
--
KC


"John John" wrote:

> You can use a redirector and send it to a text file then print the text
> file:
>
> Net start >c:\test.txt.
>
> Now look for the file in the root (c:\) and just open it. You can also
> send it to printer by name:
>
> net start >"\\Computer Name\Printer Name"
>
> John
>
> KCav wrote:
> > thank you for replying to my post.
> >
> > When I ask wharservices are running how can I send the output to my printer?

>
>
 
It worked Thank you
--
KC


"Bert Kinney" wrote:

> Hi,
>
> Right click on the title bar of the CMD window and choose "Select all".
> Right click again and choose "Copy".
> Now paste where you like.
>
> Regards,
> Bert Kinney MS-MVP Shell/User
> http://bertk.mvps.org
> Member: http://dts-l.org
>
> KCav wrote:
> > thank you for replying to my post.
> >
> > When I ask wharservices are running how can I send the output to my printer?

>
 
Thank you. I have printed a list of services that are running.
--
KC


"Pegasus (MVP)" wrote:

>
> "KCav" <KCav@discussions.microsoft.com> wrote in message
> news:87B5E651-EE07-426C-9457-1026AF7E9EDF@microsoft.com...
> > When shutting down Windows has repeatidly had to savemy user infor to the
> > Registry while a service was still running.
> >
> > How do I find out which services are running in a users account?
> > --
> > KC

>
> "Services" are by their nature not user-specific. They run
> in the background for every user. To see what services
> are currently active, try one of these methods:
>
> - Click Start / Run / cmd {OK}
> - Type this command:
> net start {OK}
>
> or:
> - Click Start / Run / services.msc {OK}
>
>
>
 
Thank you.
--
KC


"Pegasus (MVP)" wrote:

> The general way to send Command Prompt stuff to the printer
> goes like so:
>
> net start > c:\test.txt
> notepad c:\test.txt
>
> Now print this file.
>
>
> "KCav" <KCav@discussions.microsoft.com> wrote in message
> news:495FEE27-1200-4F61-A218-22721FBEB81C@microsoft.com...
> > Thank you for your reply.
> >
> > I typed Net start from CMD prompt and it displayed a long list of serives.
> > If I could send the list to my printer I could useit as a check list and
> > commare what services are running with those running in local and system
> > mode
> > rather tha user.
> >
> > How can I send the output from Net start to my printer?
> > --
> > KC
> >
> >
> > "Pegasus (MVP)" wrote:
> >
> >>
> >> "KCav" <KCav@discussions.microsoft.com> wrote in message
> >> news:87B5E651-EE07-426C-9457-1026AF7E9EDF@microsoft.com...
> >> > When shutting down Windows has repeatidly had to savemy user infor to
> >> > the
> >> > Registry while a service was still running.
> >> >
> >> > How do I find out which services are running in a users account?
> >> > --
> >> > KC
> >>
> >> "Services" are by their nature not user-specific. They run
> >> in the background for every user. To see what services
> >> are currently active, try one of these methods:
> >>
> >> - Click Start / Run / cmd {OK}
> >> - Type this command:
> >> net start {OK}
> >>
> >> or:
> >> - Click Start / Run / services.msc {OK}
> >>
> >>
> >>

>
>
>
 
Back
Top