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