Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently writing a deployment script that installs a number of window services.

The services names are versioned, so I want to delete the prior windows service version as part of the installs of the new service.

What is the best (most powershelly) way of doing this.

-- Adrian.

share|improve this question

3 Answers

up vote 27 down vote accepted

You need to use WMI for this since there is no Remove-Service cmdlet

For example,

$service = Get-WmiObject -Class Win32_Service -Filter "Name='servicename'"
$service.delete()
share|improve this answer
You could also port the relevant part of this example to powershell (use the TransactedInstaller class): eggheadcafe.com/articles/20060104.asp However ravikanth's method is probably simpler. – JohnL Feb 11 '11 at 10:57

There's no harm in using the right tool for the job, I find running (from Powershell)

sc.exe \\server delete "MyService" 

the most reliable method that does not have many dependencies.

share|improve this answer

If you just want to check service existance:

if (Get-Service "My Service" -ErrorAction SilentlyContinue)
{
    "service exists"
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.