Cake.Services
Cake.Services copied to clipboard
Windows Services addin for Cake
We've recently released new icons for Cake extensions, to help more easily differentiate Cake Addins, Modules, Recipes, etc. [](https://github.com/cake-contrib/graphics) More information: https://github.com/cake-contrib/graphics
`.InstallService` invokes powershell under the hood. When you set password with `$` it leaves it unescaped. As workaround I use ``.Replace("$", "`$")``. Example: ``` InstallService(new InstallSettings { Username = username,...
The Cake.Services nuget package contains a copy of the Cake.Powershell dll. Maybe this is intended as a convenience, but it's a problem when trying to use another version of cake.powershell...
I added this to the top of my build.cake: `#addin "Cake.Services"` Now I get a warning: > The assembly 'Cake.Services, Version=0.3.5.0, Culture=neutral, PublicKeyToken=null' > is referencing an older version of...
When calling StartService("serviceName", "computer", "timeout") from a cake script the status of the service is set to **StartPending**. Then after a few seconds, starting the service fails, and the status...