I have been told that Powershell 2.0 has better options to do this but I have yet to locate it. Alot of people are stating "You can do that in PS 2.0 way easier.." Really HOW??? I have yet to see a post on how to do it...
Anyway here's the script:
$list = Get-Content "
foreach ($s in $list)
{
(gwmi win32_service -computername $s -filter "name='
}
You can also use '.startservice()' at the end of line in the loop to start the service.
Quick, easy and to the point.
-Boston Tech Guy out.