up vote 0 down vote favorite
1
share [g+] share [fb]

If I know a service name, and have enough permission. My question is how to set a Windows Service to be auto-restart in PowerShell? I am using PowerShell 1.0, OS is Windows Server 2003.

thanks in advance, George

link|improve this question

57% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Are you perchance asking for

Set-Service [service name] -startuptype automatic

EDIT

>get-help set-service

NAME
    Set-Service

SYNOPSIS
    Starts, stops, and suspends a service, and changes its properties.


SYNTAX
    Set-Service [-StartupType {Automatic | Manual | Disabled}] [-DisplayName <string>] [-PassThru] [-Status <string>] [
    -InputObject <ServiceController>] [-Description <string>] [-ComputerName <string[]>] [-confirm] [-whatif] [<CommonP
    arameters>]

    Set-Service [-Status <string>] [-StartupType {Automatic | Manual | Disabled}] [-Description <string>] [-Name] <stri
    ng> [-PassThru] [-DisplayName <string>] [-ComputerName <string[]>] [-confirm] [-whatif] [<CommonParameters>]
link|improve this answer
1  
It's for setting service stratup mode. But I suppose, George want to configure service for auto-restart when it crashes. – Sergey Olontsev Aug 2 '09 at 13:53
Error information when executing your command => Set-Service : A parameter cannot be found that matches parameter name 'starttyp e'. – George2 Aug 2 '09 at 14:01
HawX, I want to set it to be automatic start during system start-up. – George2 Aug 2 '09 at 14:01
Sorry, I am wrong. I have a typo, should use startuptype other than starttype. – George2 Aug 2 '09 at 14:03
I have a related question here, appreciate if you could help. :-) stackoverflow.com/questions/1218969/… – George2 Aug 2 '09 at 14:11
feedback

Your Answer

 
or
required, but never shown

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