Today I received a customer notification that their Windows Azure Pack Portal for Tenants was no longer available and the webpage was showing ‘500 internal Server Error’. This error code is pretty general, but we soon noticed that on the ADFS part, the certificate for signing the tokens was automatically renewed and as the new ADFS […]
PowerShell
Convert JSON File to PowerShell Object
Windows Azure Pack (VM role) VM’s are based upon JSON files, with this command you can use them in your PS scripting Get-Content -Raw -Path <jsonFile>.json | ConvertFrom-Json
PowerShell – load all modules
Use the Get-Module cmdlet with the ListAvailable switch, and pipe the results to the Import-Module cmdlet. Get-Module -ListAvailable | Import-Module
Thoughts on PDT
OK, PDT (PowerShell Deployment Toolkit) deploys a complete Private Cloud infrastructure with the click of a mouse, The latest version 2.6 resolves a number of bugs, and also adds the following capabilities: High availability for roles that require network load balancing Shared VHDX creation VM creation updates: Generation 2 VMs VLAN Tagging […]