- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to start multiple windows services using PowerShell?
To start multiple services with PowerShell, we need to use comma (,) between services.
For example,
Start-Service -Name Spooler,AdobeARMservice -Verbose
Get-Service -Name Spooler,AdobeARMservice | Start-Service -Verbose
To start the services with display name,
Start-Service -Name “Print Spooler”, “Work Folder” -Verbose
Get-Service -Name “Print Spooler”, “Work Folder” | Start-Service -Verbose
- Related Articles
- How to stop multiple services using PowerShell?
- How to start a windows service using PowerShell?
- How to start dependent services in PowerShell?
- How to get services based on start-type in PowerShell?
- How to start windows service with display name in PowerShell?
- How to get services based on multiple conditional parameters in PowerShell?
- How to Get Windows features using PowerShell?
- How to remove windows features using PowerShell?
- How to start any program using PowerShell?
- How to stop a windows service using PowerShell?
- How to share a windows folder using PowerShell?
- How to remove windows folder sharing using PowerShell?
- How to disable windows firewall profiles using PowerShell?
- How to get installed windows update using PowerShell?
- How to find Windows Product Key Using PowerShell?

Advertisements