When writing advanced functions with two (or more) parameter sets, sometimes you need to use conditional logic based on what parameter set is in use. This can be achieved easily by using the built-in PSCmdlet variable. (more…)
Category: PowerShell
Quick tip: Dynamically create and use variables
Creating and using variables in PowerShell is simple. Unlike most other languages you don’t need to initialize a variable before use – you don’t even need to type them; PowerShell will attempt to set the type based on the value you give it. Because they are so simple to use, it’s easy to forget that we actually have a set of cmdlets for working with variables. (Get/Set/New/Clear/Remove-Variable) But that’s ok, they are seldom needed. But in this quick tip I will show you how to create and use variables dynamically, and then they come in handy indeed. (more…)
Time your script
I’m back with another set of small helper functions. This time it’s all about timing your script. Sure, it’s not that difficult to do manually – just get the time when it starts, and when it ends, and calculate the running time. It might not look pretty, but it works. With this functions though, it’s even easier! (more…)
Test-Function
This is just a little helper function that will help you if you have a prerequisite of certain 3rd-party functions being loaded for your script to work. It will either give you are TRUE/FALSE, or a list of the missing functions. Stick it in somewhere at the beginning of your script, and give it an array of functions to test for, and handle the result however you like. (more…)
Get-Random vs System.Random
In the process of learning PowerShell it is customary to hear people say that you shouldn’t re-invent the wheel; if there is a native command for it, you should use that. And I agree. But there is a case to be made for taking the time to properly explore all the different options available to you. For instance when coding for a specific version of PowerShell, or if speed is important. This post will discuss the latter; specifically a comparison of the native command for generating random numbers (Get-Random) and using the .NET class System.Random. (more…)
Get-MacAddress
Another small function from me today. And another one that I can’t take credit for. I found this one on poshcode, and just did some minor tweaking to it. It sends an ARP request to get the MAC address from an IPv4 address. (more…)
Get-MacAddressVendor
This little function uses the free API from www.macvendorlookup.com to lookup vendor information for a MAC Address. It’s really quite simple, and easy to use. It only have the one parameter; MacAddress, which defaults to the MAC address of the first network interface that is in use. (more…)
Encode/Decode Base64Url
As is often the case, when working on a project I end up needing some sub-task done and search the web to see if someone have done it before. In this particular instance I couldn’t find any ready-made solutions for PowerShell, but I did find that someone had written a couple of functions in c# that did exactly what I needed. Luckily, translating from c# to PowerShell isn’t that hard, so I thought I’d share the functions I wrote (translated) with you. (more…)
Let Active Directory Administrative Center help you learn PowerShell
Active Directory Administrative Center was introduced with Microsoft Windows Server 2008 R2, but was extended with a very useful new feature with Microsoft Windows Server 2012. This feature is called Windows PowerShell History Viewer and it’s quite a useful feature. Read on to learn more! (more…)
PowerShell Summit Europe 2015
Registration for this years PowerShell Summit Europe will open tomorrow, 27th of February. If you have any interest in PowerShell I would highly recommend attending this summit.
The PowerShell summit is organized by powershell.org and is the only purely PowerShell related international meetup, and a great place to meet the people behind PowerShell, as well as many of the top people within the community.
I attended last years summit in Amsterdam, and it was great! I met a lot of knowledgeable people and we had some great sessions, with great discussions in between.
Who is this summit for? If you have been using PowerShell for some time and feel you are past the beginner phase, this is for you! It’s a great place to learn, and to discuss with fellow PowerShell community members and I guarantee you will learn new stuff and get new contacts/friends from all over Europe.
If you are interested in attending yourself, head on over to http://powershell.org/wp/2015/02/20/powershell-summit-europe-registration/ to learn more and to register. If you know of anyone that might have an interest in this, please forward this or send them the link.
As explained in the link above, the European PowerShell community needs to solidify and show that we exists. If not enough people show interest, there just isn’t any point in keeping arranging this in Europe. So help spread the word, and show the we have a good PowerShell community in Europe.
Hopefully I will see you in Stockholm at the PowerShell summit?