Hello,
Can I see if a windows service is auto-start from solarwinds?
Thanks,
Ufuk
Hello Ufuk,
Using Sever & Application monitor you could run a script to show the services which are set to Auto Start, I have used this approach to alert if a service which is set to Auto Start is stopped. Is this what you are looking to do? The "Service Control Manager" feature also shows you the startup type for the services if you are looking something like that.
Tony
Hello Tony,
Thank you very much for your reply.
We want to have a report of the windows services which are set to auto start but in stopped status; we wish to have this report by not monitoring all the services. Service control manager shows the status and startup type of the service as I understand it shwows this information by not starting monitoring the service, but is it possible to generate a report by using this information, I couln’t find a resource related to this information, or is this information written in the database, if yes in which table?
<http://www.isbank.com.tr>
Ufuk Yetiş Şişli
Bilgi Teknolojileri Bölümü
Tel: 0216 552 5177
Faks: 0212 316 0836
Hi Ufuk,
The only way to achieve this would be to use a custom script, PowerShell perhaps something like
Get-WmiObject Win32_Service |Where-Object { $_.StartMode -eq 'Auto' -and $_.State -ne 'Running' }
For full details on how to create the script
www.solarwinds.com/.../orionapmagcreatingpowershellmonitor.htm
You could then report on the values returned.