Difference between revisions of "Set-service"
Jump to navigation
Jump to search
(Created page with "https://stackoverflow.com/questions/313622/powershell-script-to-change-service-account") |
|||
Line 1: | Line 1: | ||
+ | |||
+ | https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service | ||
+ | ``` | ||
+ | $credential = Get-Credential | ||
+ | Set-Service -Name Schedule -Credential $credential | ||
+ | ``` | ||
+ | |||
https://stackoverflow.com/questions/313622/powershell-script-to-change-service-account | https://stackoverflow.com/questions/313622/powershell-script-to-change-service-account |
Latest revision as of 05:42, 9 July 2021
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service
$credential = Get-Credential Set-Service -Name Schedule -Credential $credential
https://stackoverflow.com/questions/313622/powershell-script-to-change-service-account