> ## Content Index
> Fetch the complete content index at: https://www.filipkonopik.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# PowerShell: Start a Windows Service
- URL: https://www.filipkonopik.com/powershell-start-a-windows-service/
- Published: 2026-07-20T08:32:17.000Z
- Updated: 2026-08-06T05:26:29.000Z
- Author: Filip Konopík
- Tags: Processes & Services

Need to start a stopped Windows service - after a manual stop, a crash, or a config change? This one-liner starts it directly from the terminal.

Prerequisites:

- Privileges: Run as Administrator
- Module: Built-in, no import needed

Quick Command:

```PowerShell
Start-Service YourServiceName -PassThru

```

Example Output:

```Powershell
Status   Name               DisplayName
------   ----               -----------
Running  YourServiceName Your Service Display Name
```

📦

****Want all of them at once?**  
Get every free one-liner from this blog in a single downloadable bundle organized by category, each with full comment-based help. No more copy-pasting one at a time.

[Get the Complete Bundle for $39](https://gum.co/u/oczvkqdc?ref=filipkonopik.com)

How It Works:

- Start-Service starts the specified service if it's currently stopped.
- Replace YourServiceName with the service's actual Name property.
- By default this produces no output on success. Adding -PassThru returns the service object so you can confirm the new status.

Pro Tip:

If you're not sure of a service's exact name, search for it first:

```Powershell
Get-Service *keyword*
```