Contact Info

Crumbtrail

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

Resume-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 »

Resume-Service

Description
Resume a suspended service

Usage


Options


Example(s)
Resume the TapiSrv (Telephony) service:

PS C:\>restart-service tapiSrv

Resume all of the suspended (paused) services on the computer:

PS C:\>get-service | where-object {$_.Status -eq "Paused"} | resume-service -whatif

to actually run the above, remove the -whatif parameter