{"id":4528,"date":"2020-04-15T01:12:57","date_gmt":"2020-04-15T01:12:57","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=4528"},"modified":"2022-12-02T03:32:37","modified_gmt":"2022-12-02T03:32:37","slug":"intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location","title":{"rendered":"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location"},"content":{"rendered":"\n<ol class=\"wp-block-list\">\n<li>Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space&nbsp;<\/li>\n\n\n\n<li>Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2!<\/li>\n\n\n\n<li>Create a Blob Container in this Storage Resource<\/li>\n\n\n\n<li>Use Storage Explorer to upload files here<br><br><img loading=\"lazy\" decoding=\"async\" width=\"252\" height=\"311\" src=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965e2d0b24e.png\" alt=\"\" srcset=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965e2d0b24e.png 252w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965e2d0b24e-243x300.png 243w\"><\/li>\n\n\n\n<li>Upload what file you would like to deploy<\/li>\n\n\n\n<li>Right click on the file and choose \u201cGet Shared Access Signatue\u201d<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"333\" height=\"362\" src=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965ca2545e7.png\" alt=\"\" class=\"wp-image-4525 img-responsive\" srcset=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965ca2545e7.png 333w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965ca2545e7-276x300.png 276w\" sizes=\"auto, (max-width: 333px) 100vw, 333px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">I set a 100 Year Expiry , and leave access as Read Only<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"579\" height=\"387\" src=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965ce643153.png\" alt=\"\" class=\"wp-image-4526 img-responsive\" srcset=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965ce643153.png 579w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965ce643153-300x201.png 300w\" sizes=\"auto, (max-width: 579px) 100vw, 579px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">It will give you URI and query string<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"591\" height=\"297\" src=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965d2bd1041.png\" alt=\"\" class=\"wp-image-4527 img-responsive\" srcset=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965d2bd1041.png 591w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965d2bd1041-300x151.png 300w\" sizes=\"auto, (max-width: 591px) 100vw, 591px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Copy the URI ONLY up to the file name ( nothing after e.g. the example below )&nbsp; and put in $BlobUri<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Copy the FULL Query String and put in $Sas<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Change the Output Path which will need to exist with a trailing \\, this example I have used the Users Desktop<\/p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n\t<div class=\"code-embed-wrapper\"> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\">#Variables ( Use the Azure Storage Explorer to get the URI ( Shared Access Signature ) of the file and copy the first part up to the file name in BlobURI and the Query String to the Sas) <br\/>#You will need a new Sas for each file<br\/><br\/>$BlobUri = \u2019https:\/\/xxxxx.blob.core.windows.net\/xxxxx\/1.jpg\u2019<br\/>$Sas = \u2019?sp=XXXXXXXXXXXXXXXXXXXXXXXXXXXX\u2019<br\/>#Output Path with \\ on the end<br\/>$OutputPath = \u2019C:\\Users\\\u2019 + $env:UserName + \u2019\\Desktop\\\u2019<br\/><br\/><br\/><br\/>#Gets full Uri<br\/>$FullUri = &quot;$BlobUri$Sas&quot;<br\/>#Downloads file to outpath with correct file type and file found in BlobURI<br\/>(New-Object System.Net.WebClient).DownloadFile($FullUri, $OutputPath + ($BlobUri -split \u2019\/\u2019)[-1])<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Deploy this powershell file via Device Config Scripts<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"289\" height=\"325\" src=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965f4919306.png\" alt=\"\" class=\"wp-image-4531 img-responsive\" srcset=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965f4919306.png 289w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965f4919306-267x300.png 267w\" sizes=\"auto, (max-width: 289px) 100vw, 289px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>I set a 100 Year Expiry , and leave access as Read Only It will give you URI and query string Copy the URI ONLY up to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2092,2836],"tags":[3191,2331,1103,3192,2837],"class_list":["post-4528","post","type-post","status-publish","format-standard","hentry","category-azure","category-intune","tag-blob","tag-deploy","tag-download","tag-file-copy","tag-intune"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"InTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-04-15T01:12:57+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-12-02T03:32:37+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"InTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#article\",\"name\":\"InTune \\u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com\",\"headline\":\"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/img_5e965e2d0b24e.png\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location\\\/#articleImage\",\"width\":252,\"height\":311},\"datePublished\":\"2020-04-15T01:12:57+00:00\",\"dateModified\":\"2022-12-02T03:32:37+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#webpage\"},\"articleSection\":\"Azure, InTune, blob, deploy, Download, file copy, intune\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/azure#listItem\",\"name\":\"Azure\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/azure#listItem\",\"position\":2,\"name\":\"Azure\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/azure\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#listItem\",\"name\":\"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#listItem\",\"position\":3,\"name\":\"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/azure#listItem\",\"name\":\"Azure\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location\",\"name\":\"InTune \\u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com\",\"description\":\"Setup an Azure subscription if you haven\\u2019t got this already, this will be used for Billing. The storage is under a 1$\\\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/azure\\\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2020-04-15T01:12:57+00:00\",\"dateModified\":\"2022-12-02T03:32:37+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"InTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com","description":"Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container","canonical_url":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#article","name":"InTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com","headline":"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2020\/04\/img_5e965e2d0b24e.png","@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location\/#articleImage","width":252,"height":311},"datePublished":"2020-04-15T01:12:57+00:00","dateModified":"2022-12-02T03:32:37+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#webpage"},"articleSection":"Azure, InTune, blob, deploy, Download, file copy, intune"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/azure#listItem","name":"Azure"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/azure#listItem","position":2,"name":"Azure","item":"https:\/\/pariswells.com\/blog\/category\/azure","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#listItem","name":"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#listItem","position":3,"name":"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/azure#listItem","name":"Azure"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#webpage","url":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location","name":"InTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com","description":"Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2020-04-15T01:12:57+00:00","dateModified":"2022-12-02T03:32:37+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"InTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com","og:description":"Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container","og:url":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location","article:published_time":"2020-04-15T01:12:57+00:00","article:modified_time":"2022-12-02T03:32:37+00:00","twitter:card":"summary","twitter:title":"InTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location | Welcome to Pariswells.com","twitter:description":"Setup an Azure subscription if you haven\u2019t got this already, this will be used for Billing. The storage is under a 1$\/Month for 1 GB space Create a Storage Container in the right Azure Region with the correct redundancy ( Local Redundancy Storage in Cheaper ) . Use General Purpose V2! Create a Blob Container"},"aioseo_meta_data":{"post_id":"4528","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 05:27:07","updated":"2022-12-02 03:40:26","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\/category\/azure\" title=\"Azure\">Azure<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tInTune \u2013 Copy file using PowerShell to the computer from an Azure Blob location\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Azure","link":"https:\/\/pariswells.com\/blog\/category\/azure"},{"label":"InTune &#8211; Copy file using PowerShell to the computer from an Azure Blob location","link":"https:\/\/pariswells.com\/blog\/azure\/intune-copy-file-using-powershell-to-the-computer-from-an-azure-blob-location"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/4528","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=4528"}],"version-history":[{"count":2,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/4528\/revisions"}],"predecessor-version":[{"id":6475,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/4528\/revisions\/6475"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=4528"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=4528"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=4528"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}