2 posts with tag Powershell
Topshelf install, PowerShell and Get-Credentials
In the project I'm currently working at we use PowerShell script for configuration and build execution. This means that if you get a new laptop, or a new member joins the team, or even when you need t…
·
2 minutes reading time
When using an enum in PowerShell, use the member's name, not the member's value
Consider the following enum in C#: enum State { Started, Stopped, Unknown } Note that I have not added an explicit value for the enum members. They will be generated by the compiler. As st…
·
2 minutes reading time