- 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 stop multiple services using PowerShell?
To stop multiple services can be stopped using Name or displayname by providing command (,) between them.
With name and DisplayName,
Stop-Service -Name Spooler, W32Time -Verbose Stop-Service -DisplayName "Print Spooler","Windows Time" –Verbose
- Related Articles
- How to stop service with their dependent services using PowerShell?
- How to start multiple windows services using PowerShell?
- How to stop service with their dependent services in PowerShell?
- How to get services based on multiple conditional parameters in PowerShell?
- How to stop a windows service using PowerShell?
- How to start dependent services in PowerShell?
- How to stop the Azure VM using Azure CLI in PowerShell?
- How to generate multiple reports in HTML using PowerShell?
- How to get services on remote computers with PowerShell?
- How to copy multiple files in PowerShell using Copy-Item?
- How to add multiple values in the Hashtable using PowerShell?
- How to get services based on start-type in PowerShell?
- How to display multiple outputs on an HTML webpage using PowerShell?
- How to get the services on a local computer with PowerShell?
- How to stop all instances of the process in PowerShell?

Advertisements