Contact Info

Crumbtrail

ActiveXperts.com » Administration » Powershell » Powershell 1.0 » Start-Service

Start-Service - Powershell 1.0 CmdLet

ActiveXperts Network Monitor ships with integrated Powershell scripts to monitor complex network. The scripts run out of the box
Download the ActiveXperts Network Monitor FREE version now »

Start-Service

Description
Start a stopped service

Usage


Options


Example(s)
Use the -whatif parameter to show what would happen if the 'Themes' service were to be started:

PS C:\>start-service -name Themes -whatif

Start the Themes service and log the result to a file:

PS C:\>start-service -name Themes -passthru | format-list >> startup_log.txt