I asked this question the other day.
Part of the solution required a base64binary of the pfxblob
to put into the Azure Template, to pass to Azure via Powershell.
I ultimately found I could get a pfxblob by running a different Azure command, the source of which contained a chunk of c# that did what I needed it to.
Namely -
Convert.ToBase64String(cert.Export(X509ContentType.Pfx, Password));)
I'm mostly able to pick that apart and vaguely get what it is doing, at least enough to fix my immediate problem at the time. But I never did work out what a pfxblob actually is. And on the run up finding that solution, I couldn't find anything that described what it was.
So I thought one of you lot must...