Jul 17 2020 11:44 AM
My question - is there some possibility of taking all messages from the service bus queue with all information like content and headers with PowerShell?
To take one I use
$postService = Invoke-WebRequest -Uri "https://myservice.servicebus.windows.net/test/messages/head" -Headers $header -Method Post
But I need all list, and unfortunately, I do not find a way to do it with PS, but only with C# =/
Dec 24 2020 03:00 AM