down..
Z
Edward E. Ziots
Senior Informational Security Engineer
CISSP,Security +,Network+
Date: Thu, 16 Feb 2012 10:12:55 -0500
Subject: Re: utility to output service status
From: egold...@gmail.com
To: ntsysadmin@lyris.sunbelt-software.com
to be clear, not wanting a list of ALL services r
Office of Technology
Tel 610-807-6459
3900 Burgess Place, Bethlehem, PA 18017
christopher_bod...@glic.com
The Guardian Life Insurance Company of America
www.guardianlife.com
From: Erik Goldoff
To: "NT System Admin Issues"
Date: 02/16/2012 10:13 AM
Subject: ut
You can use Powershell
get-service "Spooler" | Select Name, Status
For multiple computers and service
$Computers = "comp2", "comp1"
$Computers | Foreach {
Get-Service "Spooler", "W32Time" -computername $_
} | Select Name, Status | Export-Csv d:\temp\ser.csv -NoTypeInformation
On Thu, Feb 1
netsvc.exe
On 16 February 2012 15:09, Erik Goldoff wrote:
> Looking to run a batch/command on a series of servers, with the goal of a
> simple text file listing the service name and status
> (running/paused/stopped) to be emailed to a monitoring mailbox via
> scheduled task.
>
> PSService and S
This would be pretty easy to do in Powershell. :)
DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
From: Erik Goldoff [mailto:egold...@gmail.com]
Sent: Thursday, February 16, 2012 10:09 AM
To: NT System Admin Issues
Subject: utility to output service
to be clear, not wanting a list of ALL services running, we want to provide
a short list of services we want to check, hopefully with simple output
like :
service1 - running
service2 - stopped
service3 - paused
service4 - running
On Thu, Feb 16, 2012 at 10:09 AM, Erik Goldoff wrote:
> Lookin