invoke-webrequest The request was aborted: Could not create SSL/TLS secure channel

invoke-webrequest The request was aborted: Could not create SSL/TLS secure channel Error –  invoke-webrequest The request was aborted: Could not create SSL/TLS secure channel Solution –  By default powershell uses TLS 1.0 the site security requires TLS 1.2, use Net.ServicePointManager to define TSL 1.2 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Invoke-WebRequest -Uri https://www.yubico.com/

Continue Reading

Create Azure service fabric cluster with ARM template and powershell

Create Azure service fabric cluster with ARM template and powershell This step-by-step guide walks you through setting up a secure Azure Service Fabric cluster with scale set, storage accounts, load balancer in Azure by using Azure Resource Manager. note – Key vault , Reverse proxy and vm scale set auto scaling is not included in […]

Continue Reading

powershell script to create self signed certificate

powershell script to create self signed certificate Problem -> Sometime while performing any application test or configuring test environment it is difficult to buy certificate so better option is to use self sigh certificate. There are multiple ways to generate self sign certificate, Prior to PowerShell 4.0, you needed to download MakeCert.exe or another utility to […]

Continue Reading