 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- 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
Advertisements
 