Using PowerShell to move files to Azure Storage
I was searching all over the place to try to find out how to move files into Azure Storage. Most of the examples I could track down were for API calls through C#. There were very few examples using PowerShell, and most of those were for older versions of Azure. But, the one thing I've learned about Azure, it's a fast moving target. Sure enough, in March there were new PowerShell blob cmdlets released. This is great news. I was able to get this to work: [crayon-5b006ea47cb83166137502/] But let's face it, this code makes more sense and is a heck of lot easier to write: [crayon-5b006ea47cb8e313094922/] The problem is, since the stuff has only been out since March, anyone with working code is likely to be using the first sample.…