skip to Main Content

Docker Installation fails on secure agent

I ran the following powershell script: write-output "Installing nuger package provider"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls11 -bor [System.Net.SecurityProtocolType]::Tls12; Install-PackageProvider -name nuget -force; if (-not $?) { Write-Error 'Install package provider failed' exit 1 } write-output "Installing Docker module"; Install-Module DockerMsftProvider -Force; if…

VIEW QUESTION

Upstream Azure SignalR function issues Could not load file or assembly Microsoft.Extensions.Options runtime exception

Note: This issue is not duplicate despite the title reads similarly. The following upstream signalR trigger function has been working well until we upgraded the NuGet packages to the latest versions. [Function("OnConnected")] [SignalROutput(HubName = "myhub")] public async Task<SignalRMessageAction> OnConnectedAsync([SignalRTrigger("myhub", "connections",…

VIEW QUESTION

AZure azcopy Linux – how to pass variable to azcopy

Good day I want to pass the value of $mm to this azcopy. However, since azcopy parameters are in double quotes, it does not want to process correctly. $mm=04 ; start=`echo "START DATE: $(date)"` ; azcopy cp "https://reco.blob.core.windows.net/raw-voi-2022/2022-$mm/*?sv=2020-0RgUNH8A%3D" "https://storage.blob.core.windows.net/bin-voi-2022/2022-$mm?sv=2021-0HGICxvaLULI%3D" Results:…

VIEW QUESTION
Back To Top
Search