InterviewSolution
Saved Bookmarks
| 1. |
How to stop and start services in PowerShell? |
|
Answer» In order to ENABLE and disable services in PowerShell, it is IMPORTANT to edit the ServieName for example- To START the service: Set-Services ServiceName- Startup TYPE Automatic To delete the services: Set- Service ServiceName-Startup Type Disabled |
|