Forrest logo
back to context overview

stop-service

List of commands for stop-service:

  • stop-service:tldr:1a0be stop-service: Stop a service by using the display name.
    $ Stop-Service -DisplayName "${name}"
    try on your machine
    explain this command
  • stop-service:tldr:1a354 stop-service: Stop a service on the local computer.
    $ Stop-Service -Name ${service_name}
    try on your machine
    explain this command
  • stop-service:tldr:b65b0 stop-service: Stop a service that has dependent services.
    $ Stop-Service -Name ${service_name} -Force -Confirm
    try on your machine
    explain this command
back to context overview