Hola, como primer aporte os adjunto el código necesario para que desde un WorkerRole podamos descargar Strawberry Perl 64 Bits desde la página oficial y seguidamente descomprimirlo en el WorkingDirectory. Esto lo hace automáticamente este código. (¡Ojo!, tendréis que añadir la referencia a Ionic.Zip en el proyecto.)
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.IO;
using Ionic.Zip;
using System.Threading;
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.Diagnostics;
using Microsoft.WindowsAzure.ServiceRuntime;
using Microsoft.WindowsAzure.StorageClient;
namespace WorkerRole1 ...