Easy way how to find this is by using a PowerShel:
- Open the PowerShell and type
Get-InstalledModule AzureRM

Nice and easy …
Easy way how to find this is by using a PowerShel:
Get-InstalledModule AzureRM
Nice and easy …
Every Developer/DevOps was looking for this command at least ones a year (including myself). Truth is that we all like PowerShell and sometimes tend to forget put a running engine pre-conditional check inside a batch script (as whatever script you’re producing, always make sure that it’s transfarable onto another environment) and referencing some function which is not in (default) installed version.
Anyway…take this post as a reminder reference quide.
1. $PSVersionTable.PSVersion
This is my prefered way over the others. Why? Because it works on local as well as on remote station.
2. (Get-Host).Version
3. $host.Version
That’s it. Hope you like this short reminder and let me know your preferred way of doing this. Cheers!