Forrest logo
back to context overview

start-service

List of commands for start-service:

  • start-service:tldr:12f15 start-service: Start a service by using its name.
    $ Start-Service -Name ${service_name}
    try on your machine
    explain this command
  • start-service:tldr:5f207 start-service: Start a disabled service.
    $ Set-Service ${service_name} -StartupType ${manual}; Start-Service ${service_name}
    try on your machine
    explain this command
  • start-service:tldr:910da start-service: Display information without starting a service.
    $ Start-Service -DisplayName *${name}* -WhatIf
    try on your machine
    explain this command
back to context overview