Jump to content

How to findout which services are running in a user account


Recommended Posts

Posted

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

  • Replies 13
  • Created
  • Last Reply
Guest Pegasus \(MVP\)
Posted

Re: How to findout which services are running in a user account

 

 

"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}

Guest Bert Kinney
Posted

Re: How to findout which services are running in a user account

 

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?

Posted

Re: How to findout which services are running in a user 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}

>

>

>

Posted

Re: How to findout which services are running in a user account

 

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?

>

Guest Bert Kinney
Posted

Re: How to findout which services are running in a user 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?

Guest Pegasus \(MVP\)
Posted

Re: How to findout which services are running in a user account

 

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}

>>

>>

>>

Guest John John
Posted

Re: How to findout which services are running in a user account

 

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?

Posted

Re: How to findout which services are running in a user account

 

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?

>

Posted

Re: How to findout which services are running in a user 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?

>

>

Posted

Re: How to findout which services are running in a user account

 

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?

>

Posted

Re: How to findout which services are running in a user account

 

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}

>

>

>

Posted

Re: How to findout which services are running in a user account

 

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}

> >>

> >>

> >>

>

>

>

Guest Bert Kinney
Posted

Re: How to findout which services are running in a user account

 

You're welcome KC.

 

Regards,

Bert Kinney MS-MVP Shell/User

http://bertk.mvps.org

Member: http://dts-l.org

 

 

KCav wrote:

> It worked Thank you


×
×
  • Create New...