In one of my current project, I deal with how to run a Continuous Integration (CI) infrastructure on Windows machines. I have had experience in running a CI infrastructure for five years, but it was always on Linux machines. So in the next months I will write some blog posts about my challenge with Windows machines …
Read MoreFor deleting a Windows service in Windows CMD, you have to call 1sc delete "Service Name" This doesn't work in PowerShell, because sc is an alias for the cmdlet Set-Content in PowerShell. Deleting Windows service in PowerShell can be done by calling 1sc.exe delete "Service Name" Note, that PowerShell …
Read More