Just a quick post today on a topic that is loosely related to Office 365 but certainly can be important…
It’s no secret that a good part of the management within Office 365 is done via PowerShell. Whether you’re writing the scripts yourself or downloading scripts from the “PowerShell for Office 365” site, you’re going to be using PowerShell pretty regularly.
In my role, I’m often testing some scripts in a lab environment before handing them over to a client to run. The expectation is that they should execute the same in production as they did in my lab.
But what happens when the script doesn’t produce the same results in production?
Below is one little trick that should probably be a best practice for any scripts you’re handing off to someone else to run.
For the most part, different versions of PowerShell respond the same. Newer versions will always have additional features but if a command runs in two versions, it usually produces the same results.
I’ll occasionally get tripped up by someone running PowerShell 2.0, where “Export-Csv” does not have an “-append” switch, and you quickly hit a wall when that occurs.
What I don’t expect is to have a command run but produce different results.
Take for example the following:
PowerShell Version 2
PowerShell Version 3
So while PowerShell 2 did not return any assigned licenses, there were in fact licenses assigned to the user. Imagine if the next operation was to disable or delete any user without a license.
Are there other ways this command could be put together such that PowerShell 2 returns the same data? Absolutely. The point however is that a script run in a test environment under a different version of PowerShell can produce different results. And while I can advise my client of what version they “should” use to be consistent with my testing, that doesn’t always happen.
A quick solution is to add a “requires statement” in my script that forces a particular minimum version (the version I tested with).
This can easily be done by adding the following to your script:
#Requires -Version 3