Add argument completions to your PowerShell parameters
There are many ways to perform argument (parameter) completions in PowerShell. The three we’ll look at are: ValidateSet Register-ArgumentCompleter [ArgumentCompleter()] Each of these offer their own sets of pros and cons, and having a solid understanding of each will not doubt help you to make an informed decision when you’re sitting down to tackle your next challenge with the help of PowerShell. Let’s dive in, shall we? ValidateSet Our first argument completion mechanism is the [ValidateSet()] attribute.
Serve PowerShell Scripts Via IIS
Often times I get into something at work that makes me put my thinking cap on to solve a problem. This blog post will outline one of those times. This came into being a few years ago, but now seems like just about as good a time as any to write about it. At Chocolatey we provide a couple different ways for new and prospective customers to get up and running rapidly with our Suite of products by way of either an Azure Marketplace Image, or by following what we lovingly called our ‘Quickstart Environment’ Guide.
The Many Ways Of Native Commands In Pwsh
Working with native commands in PowerShell can sometimes be tricky business, depending on your use case. Thankfully, there are several different ways and tools available to make working with native commands in your scripts easier. In this post we’ll highlight the available methods to mixing traditional commands with PowerShell Grab a bourbon, and let’s get to it! The –% Operator In PowerShell when running a native command from pwsh.exe, you can use the stop parsing operator to tell PowerShell to pass the arguments entered for the native command with interpretting them.
Building a Package Builder Web Endpoint
Package Builder - Web Edition Preface: This isn’t officially supported by Chocolatey. But, I’m nothing if not adventurous. What’s the saying? “Where there’s a will, there’s a way”? Anyway, I digress, onto the good stuff. Earlier today I had a conversation with myself, as often happens. It went a little something like this. Self: You haven't done something ridiculous in a while. Busy-Self: I know, self, because I'm busy! Self: But _this_ would be so cool!
Use Universal Automation for Choco Package Internalizer
So @adamdriscoll created this new amazing product called Universal Automation. It’s a PowerShell job scheduling platform built on top of his awesome Universal Dashboard product. I was fortunate enough to be invited into the Private Beta, so I’ve been playing with it off and on over the last couple of weeks. I had the idea this evening to see “Can I use this to do Chocolatey Package Internalization?” We have documentation on setting it up in Jenkins over here.
Stop Installing Software Manually
Getting started with the Chocolatey package manager for all your Windows software needs.
Imposter Syndrome is Bullshit
There. I said it. I wanted to take a little bit of time to recap my weekend spent in Raleigh, North Carolina, at the PowerShell Saturday event put on by the local user group there. Man, what a great time. It was exciting to see so many people (around 100!) come together to learn from one another. There were many first time speakers at the event, and it was refreshing to see and hear them be successful.
Demystifying Pipeline Build Scripts
There are a myriad of ways to leverage build scripts inside of Azure DevOps Pipelines, and all the other popular CI/CD providers. In fact, there are whole modules dedicated to it including InvokeBuild,PSDepend,PSake and others. I hate all of them. Not necessarily because they are bad, quite the opposite. I think they are each quite good and very well written. However, when I build out my pipelines I like to keep things as simple as possible.
ELI5! Chocolatey Metapackages Edition
Chocolatey has the concept of a “meta” package. These types of packages don’t typically include any sort of logic that would leverage installation, upgrade, or uninstallation scripts. Alternatively, they provide a means to bundle existing packages as dependencies, giving you a single package to install, which in turn will install all of those subsequent dependent packages. Controlling what packages you wish to include is handled entirely in the dependencies section of a nuspec file.
Use Azure Pipelines to publish Chocolatey Packages
Hey folks! Wow, it’s been quite the dry spell, eh? Apologies, I’ve been super busy with my new role with Chocolatey Software. It’s involved a lot of Powershell, and the opportunity to go to a few conferences and network with you, the Community. If we’ve met in person, great! I’m so glad I’ve got to meet you! If we haven’t yet, look out for me at some upcoming events like AnsibleFest, Microsoft Ignite!
ELI5: Powershell objects
Hello everyone! I apologize for the gap in posts here, it’s been quite a busy season of life starting a new job at Chocolatey Software, and going to several conferences as well as other travel. In this post we will be taking a look at Powershell objects, and I’ll try to explain them in a very clear way that will help you understand them better, and ultimately (hopefully!) make your code endeavors easier, and more enjoyable.
Unwrapping the $PSCmdlet variable
I’m sure we’ve all seen it in code online. We’re checking out some code, probably on Github, and we notice folks using this strange $PScmdlet thing. When I first started I considered this variable “black magic”, and really after getting used to it and what it does I still kinda feel like that’s what it is. But let’s dive in and unwrap it so we can see how the magic trick actually works.
It's OK to fail!
We’ve all hit that low spot, when we are working with an especially difficult problem, and the code we are writing to try and solve it just won’t work the way we want it too. I often find that it is in these moments, when I’m contemplating throwing in the IT towel and becoming a hermit, that I grow the most. Debugging your code, or more often than not, making a bit of code you’ve scraped from online work for your use case lends to many opportunities to learn about a new cmdlet, method, or technique that you have not encountered before.
Write good help...it's important!
There’s nothing more frustrating that running Get-Help against a cmdlet, and not getting a lot of useful information back. The Powershell Help System is a robust tool that makes your scripts extremely discoverable to its users. A good Comment Based Help block, in my opinion, contains the following useful information: A synopsis (typically a brief statement) and description (typically a longer explanation of the script functionality), which tells the end user what the script does.
Being Cheeky With Speech
Goofing off in the shell This was born of a trying to be clever and funny in the Powershell Slack channel last night. It ended up working better than expected. Want to make a coworker’s cheeks turn red? Wanna make your significant other roll their eyes at you? Don’t worry, I’ve got you covered. Save the following to a ps1 file, or just copy and paste it into a console, and enjoy your console telling you random pickup lines from the internet.
Setting up Jeykll to build with AzDOS
I spent the better part of the weekend exploring the various ways I could leverage CI/CD to streamline getting content that I’ve written onto my blog. This post will be about my journey, and hopefully provide a useful resource to you, should you choose to do something similar. Goals and Challenges When I write content, I want a couple of things to happen. I want Jeykll to build on my own schedule.
Adding Pipeline Support to Your Scripts!
You’ve probably used the pipeline 1,000 times and not thought about how exactly you can send the output of one command to another. It’s actually, incredibly simple to do, and enables you to have a LOT of flexibility in your scripts! Pipeline overview If you are just starting out in Powershell and stumbled across this blog post, I’d like to take a moment to explain just exactly the Powershell Pipeline is, and how it works.
Using Toast notifications in Powershell
Notifications can be quite a bit more than just those annoying pop-ups you see down by your system clock from time to time. When created using Powershell, you can get an incredible amount of functionality out of them. Toasts are more than pop-ups Some of my favorite uses include: Giving myself reminders Alerting when things happen on remote endpoints Alerting other staff of important tasks that need done Receiving alerts from monitoring platforms when an issue occurs Getting started There are a couple of ways to create toast notifications on Windows 10.