Related Articles
Azure Functions – Programmatically List All Subscriptions in Your Tenant Using Resource Graph & C#
Recently I have been working quite a bit with Azure Functions and C#. Therefore it is time to post some interesting code – at least in my opinion. One problem I wanted to solve was to list all subscriptions within your tenant having tag information and if possible the solution should be easy to extend. […]
Quick Post – Get Cmdlet Related DLL
In some situation you are running a cmdlet, but you have no idea where it is stored. I mean you don’t know to which “*.dll” it belongs to or maybe you want to know some more details about the command. A very easy way to figure this out for the Get-AzureRmResource cmdlet… (Get-Command Get-AzureRmResource).DLL …as […]
PowerShell – SCCM Cmdlet Library “Get-CMDeviceCollection : Specified cast is not valid.”
UPDATE: This issue has been resolved in the latest version here https://www.microsoft.com/en-us/download/details.aspx?id=46681 While doing some SCCM automation we bumped into an issue with the SCCM Cmdlet Library 5.0.8249.1128. When you try to execute a workflow using PowerShell Remoting in SMA like this… After some investigation we could not determine the cause of it, so the […]