Cake.Services icon indicating copy to clipboard operation
Cake.Services copied to clipboard

Windows Services addin for Cake

Results 6 Cake.Services issues
Sort by recently updated
recently updated
newest added

We've recently released new icons for Cake extensions, to help more easily differentiate Cake Addins, Modules, Recipes, etc. [![cake-contrib logos](https://user-images.githubusercontent.com/177608/116633858-f5a9c380-a930-11eb-8333-e5cd978e3340.png)](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...