vote up 0 vote down star
1

Hello everyone,

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

flag

43% accept rate

1 Answer

vote up 3 vote down check

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|flag
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 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 at 14:01
HawX, I want to set it to be automatic start during system start-up. – George2 Aug 2 at 14:01
Sorry, I am wrong. I have a typo, should use startuptype other than starttype. – George2 Aug 2 at 14:03
I have a related question here, appreciate if you could help. :-) stackoverflow.com/questions/1218969/… – George2 Aug 2 at 14:11

Your Answer

Get an OpenID
or

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