ワンクリックで
windows-services
Windows services: list, start, stop, restart, configure (PowerShell)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Windows services: list, start, stop, restart, configure (PowerShell)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Search and download arXiv papers (no API key needed)
Delegate coding and file edits to Anthropic Claude Code CLI
Read/write Windows clipboard text, HTML, images, history (PowerShell)
Running scripts and code on Windows
Delegate coding tasks to OpenAI Codex CLI
Windows Defender: scans, threat history, signatures (PowerShell)
| name | windows-services |
| description | Windows services: list, start, stop, restart, configure (PowerShell) |
| category | windows |
| version | 1.0.0 |
| platform | windows |
| tags | services, windows, powershell, daemon, startup, get-service, set-service |
| license | Apache-2.0 |
Manage Windows background services — list, start, stop, restart, and change startup type — using PowerShell's built-in service cmdlets.
Get-Service | Where-Object Status -eq 'Running' |
Select-Object Name, DisplayName, Status |
Sort-Object DisplayName
Get-Service -Name "*sql*" | Select-Object Name, DisplayName, Status, StartType
Start-Service -Name "wuauserv" # Windows Update — start
Stop-Service -Name "wuauserv" -Force # Windows Update — stop
Restart-Service -Name "Spooler" # Print Spooler — restart
Get-Service -Name "wuauserv" | Select-Object Name, StartType, Status
Set-Service -Name "wuauserv" -StartupType Manual # won't start automatically
Set-Service -Name "DiagTrack" -StartupType Disabled # blocked from starting
Set-Service -Name "Spooler" -StartupType Automatic # restores auto-start
Get-Service | Where-Object { $_.StartType -eq 'Automatic' -and $_.Status -ne 'Running' } |
Select-Object Name, DisplayName, Status
$pid = 1234
Get-WmiObject Win32_Service | Where-Object ProcessId -eq $pid |
Select-Object Name, DisplayName, State, ProcessId
(Get-Service -Name "LanmanServer").DependentServices
(Get-Service -Name "LanmanServer").ServicesDependedOn
"Is Windows Update service running?"
→ Get-Service -Name "wuauserv" | Select-Object Name, Status, StartType
"Stop and disable the Print Spooler service"
→ Stop-Service -Name "Spooler" -Force; Set-Service -Name "Spooler" -StartupType Disabled
"Which automatic services are currently stopped?"
→ Get-Service | Where-Object { $_.StartType -eq 'Automatic' -and $_.Status -ne 'Running' }
Set-Service -StartupType Disabled prevents the service from starting even manually until re-enabledGet-Service | Where-Object Status -eq 'Running' | Measure-Object to get a quick service health count