Restart-ServiceResilient

SYNOPSIS

Restart a service

SYNTAX

Restart-ServiceResilient [[-ComputerName] <String[]>] [[-ServiceName] <Object>] [-NoNewLine]
 [<CommonParameters>]

DESCRIPTION

Reliably restarts one or more services by utilising a retry count and properly observing dependencies

EXAMPLES

Example 1

PS C:\> Restart-ServiceResilient -ComputerName POSHFS1 -ServiceName Spooler

Restart spooler service on POSHFS1

PARAMETERS

-ComputerName

The computer names

Type: String[]
Parameter Sets: (All)
Aliases:

Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-NoNewLine

Indicates that no new lines should be present in the output

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

-ServiceName

The service to restart

Type: Object
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES