{"id":3590,"date":"2023-04-12T15:39:33","date_gmt":"2023-04-12T15:39:33","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/"},"modified":"2023-04-12T15:39:33","modified_gmt":"2023-04-12T15:39:33","slug":"provisioning-a-windows-vm-in-azure","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/","title":{"rendered":"Provisioning a Windows VM in Azure"},"content":{"rendered":"<p>A Virtual Machine or \u201cVM\u201d is\u00a0a computing resource that uses <em>software<\/em> instead of <em>hardware<\/em> to run programs and deploy apps. <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/virtual-machines\/windows\/overview\">Azure virtual machines<\/a> enable you to swiftly create dedicated computing resources that can\u00a0be used just like any physical desktop or server.<\/p>\n<p><strong>Choose Your Method<\/strong><\/p>\n<p>Azure virtual machines (VMs) can be created through the <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/azure-portal\/azure-portal-overview\">Azure portal<\/a> which provides a simplified \u201cbrowser-based\u201d user interface, however this method is a manual step-by-step approach that isn\u2019t easily automated.<\/p>\n<p>More realistically, you would use the Azure command-line interface (Azure CLI) to create and manage Azure resources (such as Azure VMs). <a href=\"https:\/\/docs.microsoft.com\/en-us\/cli\/azure\/\">Azure CLI<\/a> is supported across Azure services and is also designed to be pretty straight-forward but has an <strong>emphasis on automation<\/strong>.<\/p>\n<p><strong>Azure CLI and Azure PowerShell<\/strong><\/p>\n<p>Azure CLI is a cross-platform command-line program that connects to Azure and executes administrative commands on Azure resources. Azure <em>PowerShell<\/em> is a \u201cmodule that you can add\u201d to MS Windows PowerShell that enables you to connect to your Azure subscription and manage resources.<\/p>\n<p>Azure CLI has an installer that makes its commands executable in <strong>all four shell environments<\/strong> while Azure PowerShell is set of <strong>cmdlets<\/strong> (small, lightweight commands that are used in the Windows PowerShell environment) packaged as a PowerShell <em>module<\/em> named Az, not an <em>executable<\/em>.<\/p>\n<p><strong>What To Do<\/strong><\/p>\n<p>In this post I want to illustrate the process of using Azure CLI commands to deploy a virtual machine in Azure that runs Windows Server 2019. \u00a0Additionally, I want to show how to create a Windows virtual machine by using an <strong>Azure Resource Manager template<\/strong> and Azure PowerShell from the Azure Cloud shell.<\/p>\n<p><strong>Launch Azure Cloud Shell<\/strong><\/p>\n<p>The Azure Cloud Shell is a free interactive shell that you can use to run the steps in this article. It has common Azure tools preinstalled and configured to use with your account. To open the Cloud Shell, you launch a separate browser tab and go to\u00a0<a href=\"https:\/\/shell.azure.com\/bash\">https:\/\/shell.azure.com\/bash<\/a>. From there, you can paste in or type commands \u00a0and then press\u00a0<strong>Enter<\/strong>\u00a0to run them:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1985 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV1-min.jpg\" alt=\"\" width=\"900\" height=\"208\" \/><\/p>\n<p><strong>Creating an Azure Resource Group<\/strong><\/p>\n<p>You need to first create an Azure resource group for the VM to reside in. To do that you can use the\u00a0<a href=\"https:\/\/docs.microsoft.com\/en-us\/cli\/azure\/group\">az group create<\/a>\u00a0command. An Azure resource group is a logical container into which Azure resources are deployed and managed (in this case our VM). I used the following command to create a resource group named\u00a0<em>jimsResourceGroup<\/em>\u00a0in the\u00a0<em>eastus<\/em>\u00a0location:<\/p>\n<p>az group create &#8211;name jimsResourceGroup &#8211;location eastus<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1978 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV2-min.jpg\" alt=\"\" width=\"900\" height=\"391\" \/><\/p>\n<h2><\/h2>\n<p><strong>Creating the Virtual Machine<\/strong><\/p>\n<p>Once we have a resource group setup, we can create the VM with the\u00a0<a href=\"https:\/\/docs.microsoft.com\/en-us\/cli\/azure\/vm\">az vm create<\/a> command. The following code creates a VM named\u00a0<em>jimsVM<\/em> and uses\u00a0jamesdouglasmiller for the administrative username. When you run the commands, you are prompted to enter a password at the command line. The username and password will be used later when you connect to the VM.<\/p>\n<p>az vm create \u00a0\u00a0\u00a0 &#8211;resource-group jimsResourceGroup \u00a0\u00a0\u00a0 &#8211;name jimsVM \u00a0\u00a0\u00a0 &#8211;image Win2019Datacenter \u00a0\u00a0\u00a0 &#8211;public-ip-sku Standard \u00a0\u00a0\u00a0 &#8211;admin-username jamesdouglasmiller<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1979 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV3-min.jpg\" alt=\"\" width=\"900\" height=\"398\" \/><\/p>\n<p>It takes a few minutes to create the VM and supporting resources. The following is the output showing the create was successful (note the\u00a0publicIpAddress\u00a0here since this will be the address to use to access the VM):<\/p>\n<p>{<\/p>\n<p>&#8220;fqdns&#8221;: &#8220;&#8221;,<\/p>\n<p>&#8220;id&#8221;: &#8220;\/subscriptions\/aa9906a8-87ce-4027-b901-8d02efc597c0\/resourceGroups\/jimsResourceGroup\/providers\/Microsoft.Compute\/virtualMachines\/jimsVM&#8221;,<\/p>\n<p>&#8220;location&#8221;: &#8220;eastus&#8221;,<\/p>\n<p>&#8220;macAddress&#8221;: &#8220;00-22-48-28-4B-A5&#8221;,<\/p>\n<p>&#8220;powerState&#8221;: &#8220;VM running&#8221;,<\/p>\n<p>&#8220;privateIpAddress&#8221;: &#8220;10.0.0.4&#8221;,<\/p>\n<p>&#8220;publicIpAddress&#8221;: &#8220;20.84.15.119&#8221;,<\/p>\n<p>&#8220;resourceGroup&#8221;: &#8220;jimsResourceGroup&#8221;,<\/p>\n<p>&#8220;zones&#8221;: &#8220;&#8221;<\/p>\n<p>}<\/p>\n<p><strong>Open port 80 for web traffic<\/strong><\/p>\n<p>By default, only RDP (Microsoft Remote Protocol) connections are opened when you create a Windows VM in Azure. Since I want to run Internet Information Server on the VM, I used the <a href=\"https:\/\/docs.microsoft.com\/en-us\/cli\/azure\/vm\">az vm open-port<\/a>\u00a0command to open TCP port 80 which the IIS web server will need:<\/p>\n<p>az vm open-port &#8211;port 80 &#8211;resource-group jimsResourceGroup &#8211;name jimsVM<\/p>\n<p><strong>Connect to the VM<\/strong><\/p>\n<p>Now that the VM is created and up and running, you can use Windows RDP on my client computer to connect to it using the public IP address and credentials we setup earlier:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1980 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV4-min.jpg\" alt=\"\" width=\"538\" height=\"309\" \/><\/p>\n<h2><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1981 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV5-min.jpg\" alt=\"\" width=\"900\" height=\"156\" \/><\/p>\n<p><strong>Installing a Web Server<\/strong><\/p>\n<p>To install a web server on the VM, you can use a PowerShell prompt on the VM to run the following command:<\/p>\n<p>Install-WindowsFeature -name Web-Server -IncludeManagementTools<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1982 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV6-min.jpg\" alt=\"\" width=\"900\" height=\"247\" \/><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1983 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV7-min.jpg\" alt=\"\" width=\"900\" height=\"294\" \/><\/p>\n<p>When done, you\u2019ll have IIS installed and port 80 open on the VM. To test things, you can use a web browser to view the default IIS welcome page by navigating to the public IP address of the VM:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-1984 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV8-min.jpg\" alt=\"\" width=\"900\" height=\"344\" \/><\/p>\n<p>Success!<\/p>\n<p><strong>Azure Resource Manager (ARM) Template<\/strong><\/p>\n<p>You can automate deployments (such as creating virtual machines) by using what is referred to as \u201cinfrastructure\u201d code (for example the Azure CLI commands we used to create and configure the VM) to define the infrastructure that needs to be deployed. Just like <em>application<\/em> code, you can save the infrastructure code so that you can reuse the code and deploy similar VMs at any time.<\/p>\n<p>Azure takes things a bit further by implementing infrastructure code reuse by using <strong>Azure Resource Manager templates<\/strong> (ARM templates). The template is a <a href=\"https:\/\/en.wikipedia.org\/wiki\/JSON\">JavaScript Object Notation<\/a> (JSON) file that defines the infrastructure and configuration for a resource.<\/p>\n<p>These templates use declarative syntax, which lets you state what you intend to deploy without having to rewrite the commands to create it.<\/p>\n<p>The following example shows how you simply specify the resources to deploy and the properties for those resources. The TemplateUri parameter indicates which template will be used (in this case an\u00a0<a href=\"https:\/\/raw.githubusercontent.com\/Azure\/azure-quickstart-templates\/master\/quickstarts\/microsoft.compute\/vm-simple-windows\/azuredeploy.json\">Azure Quickstart template<\/a> which defines an\u00a0<a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/virtual-machines\/generation-2\">Azure Generation 2 VM<\/a>.<\/p>\n<p>$resourceGroupName = Read-Host -Prompt &#8220;Enter the Resource Group name&#8221;<\/p>\n<p>$location = Read-Host -Prompt &#8220;Enter the location (i.e. eastus)&#8221;<\/p>\n<p>$adminUsername = Read-Host -Prompt &#8220;Enter the administrator username&#8221;<\/p>\n<p>$adminPassword = Read-Host -Prompt &#8220;Enter the administrator password&#8221; -AsSecureString<\/p>\n<p>$dnsLabelPrefix = Read-Host -Prompt &#8220;Enter a unique DNS name for the public IP&#8221;<\/p>\n<p>New-AzResourceGroup -Name $resourceGroupName -Location &#8220;$location&#8221;<\/p>\n<p>New-AzResourceGroupDeployment `<\/p>\n<p>-ResourceGroupName $resourceGroupName `<\/p>\n<p>-TemplateUri &#8220;https:\/\/raw.githubusercontent.com\/Azure\/azure-quickstart-templates\/master\/quickstarts\/microsoft.compute\/vm-simple-windows\/azuredeploy.json&#8221; `<\/p>\n<p>-adminUsername $adminUsername `<\/p>\n<p>-adminPassword $adminPassword `<\/p>\n<p>-dnsLabelPrefix $dnsLabelPrefix<\/p>\n<p>(Get-AzVm -ResourceGroupName $resourceGroupName).name<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A Virtual Machine or \u201cVM\u201d is\u00a0a computing resource that uses software instead of hardware to run programs and deploy apps. Azure virtual machines enable you to swiftly create dedicated computing resources that can\u00a0be used just like any physical desktop or server. Choose Your Method Azure virtual machines (VMs) can be created through the Azure portal&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[27],"tags":[],"class_list":["post-3590","post","type-post","status-publish","format-standard","hentry","category-quebit-value"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Provisioning a Windows VM in Azure - QueBIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Provisioning a Windows VM in Azure - QueBIT\" \/>\n<meta property=\"og:description\" content=\"A Virtual Machine or \u201cVM\u201d is\u00a0a computing resource that uses software instead of hardware to run programs and deploy apps. Azure virtual machines enable you to swiftly create dedicated computing resources that can\u00a0be used just like any physical desktop or server. Choose Your Method Azure virtual machines (VMs) can be created through the Azure portal&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-12T15:39:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV1-min.jpg\" \/>\n<meta name=\"author\" content=\"agoddard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"agoddard\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/\"},\"author\":{\"name\":\"agoddard\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"headline\":\"Provisioning a Windows VM in Azure\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/\"},\"wordCount\":985,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/WV1-min.jpg\",\"articleSection\":[\"QueBIT Value\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/\",\"name\":\"Provisioning a Windows VM in Azure - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/WV1-min.jpg\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/WV1-min.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/WV1-min.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/provisioning-a-windows-vm-in-azure\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Provisioning a Windows VM in Azure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\",\"name\":\"agoddard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"caption\":\"agoddard\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/agoddard\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Provisioning a Windows VM in Azure - QueBIT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/","og_locale":"en_US","og_type":"article","og_title":"Provisioning a Windows VM in Azure - QueBIT","og_description":"A Virtual Machine or \u201cVM\u201d is\u00a0a computing resource that uses software instead of hardware to run programs and deploy apps. Azure virtual machines enable you to swiftly create dedicated computing resources that can\u00a0be used just like any physical desktop or server. Choose Your Method Azure virtual machines (VMs) can be created through the Azure portal&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/","og_site_name":"QueBIT","article_published_time":"2023-04-12T15:39:33+00:00","og_image":[{"url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV1-min.jpg","type":"","width":"","height":""}],"author":"agoddard","twitter_card":"summary_large_image","twitter_misc":{"Written by":"agoddard","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/"},"author":{"name":"agoddard","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"headline":"Provisioning a Windows VM in Azure","datePublished":"2023-04-12T15:39:33+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/"},"wordCount":985,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV1-min.jpg","articleSection":["QueBIT Value"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/","url":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/","name":"Provisioning a Windows VM in Azure - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV1-min.jpg","datePublished":"2023-04-12T15:39:33+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV1-min.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/01\/WV1-min.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/provisioning-a-windows-vm-in-azure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"Provisioning a Windows VM in Azure"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084","name":"agoddard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","caption":"agoddard"},"sameAs":["https:\/\/quebit.com\/askquebit"],"url":"https:\/\/quebit.com\/askquebit\/author\/agoddard\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3590","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=3590"}],"version-history":[{"count":0,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3590\/revisions"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=3590"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=3590"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=3590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}