Hello folks,

In order to perform your PST import or just upload files to the Azure storage through a proxy, AzCopy can be configured to use it by following this :

  1. Go to the directory where AzCopy is installed (for me it is : “C:\Program Files (x86)\Microsoft SDKs\Azure\AzCopy\”
  2. Create a new file called “azcopy.exe.config” and edit it with the following :

<configuration>
<system.net>
<defaultProxy>
<proxy
proxyaddress=”http://ProxyURL:Port
bypassonlocal=”true”
/>
</defaultProxy>
</system.net>
</configuration>

Then AzCopy will use the proxy mentionned on the field “ProxyAddress” and bypass it for local ressources.

Have a good day ^^