{"id":13616,"date":"2023-03-09T19:40:35","date_gmt":"2023-03-09T16:40:35","guid":{"rendered":"https:\/\/starlanguageblog.com\/?p=13616"},"modified":"2023-03-09T19:40:35","modified_gmt":"2023-03-09T16:40:35","slug":"how-to-start-hyper-v-virtual-machine-from-command-line","status":"publish","type":"post","link":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/","title":{"rendered":"How To Start Hyper V Virtual Machine From Command Line"},"content":{"rendered":"
\n
\n
\n
\n
\n
\n

How To Start Hyper V Virtual Machine From Command Line<\/h1>\n

Hyper-V is a virtualization technology provided by Microsoft that enables you to create and manage virtual machines on Windows servers. While Hyper-V provides a graphical user interface for managing virtual machines, it is also possible to manage virtual machines from the command line. In this article, we will discuss how to start a Hyper-V virtual machine from the command line.<\/p>\n

Step 1: Open Command Prompt as an Administrator<\/h3>\n

To start a Hyper-V virtual machine from the command line, you must first open Command Prompt as an administrator. To do this, follow these steps:<\/p>\n

    \n
  1. Click on the Start button and type “cmd” in the search bar.<\/li>\n
  2. Right-click on the Command Prompt application and select “Run as administrator”.<\/li>\n
  3. If prompted for permission, click “Yes”.<\/li>\n<\/ol>\n

    Step 2: Navigate to the Hyper-V Directory<\/h3>\n

    The next step is to navigate to the directory where Hyper-V is installed. The default location for Hyper-V on Windows Server 2012 and later is “C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\Modules\\Hyper-V”.<\/p>\n

    To navigate to this directory, type the following command in Command Prompt:<\/p>\n

    \n
    bash<\/span><\/div>\n
    cd<\/span> C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\Modules\\Hyper-V<\/code><\/div>\n<\/div>\n

    Step 3: Check the Name of the Virtual Machine<\/h3>\n

    Before starting a virtual machine from the command line, you must know the name of the virtual machine. To check the name of the virtual machine, use the following command:<\/p>\n

    \n
    sql<\/span><\/div>\n
    Get<\/span>-<\/span>VM
    \n<\/code><\/div>\n<\/div>\n

    This will display a list of all the virtual machines on the server along with their names.<\/p>\n

    Step 4: Start the Virtual Machine<\/h3>\n

    Once you know the name of the virtual machine, you can start it from the command line using the following command:<\/p>\n

    \n
    php<\/span><\/div>\n
    Start-VM -Name <VirtualMachineName<\/span>><\/span>
    \n<\/span><\/code><\/div>\n<\/div>\n

    Replace <VirtualMachineName> with the name of the virtual machine that you want to start. For example, if the name of the virtual machine is “TestVM”, the command would be:<\/p>\n

    \n
    sql<\/span><\/div>\n
    Start<\/span>-<\/span>VM -<\/span>Name TestVM
    \n<\/code><\/div>\n<\/div>\n

    This will start the virtual machine.<\/p>\n

    Step 5: Verify that the Virtual Machine has Started<\/h3>\n

    To verify that the virtual machine has started, you can use the following command:<\/p>\n

    \n
    vbnet<\/span><\/div>\n
    Get<\/span>-VM -Name <VirtualMachineName> | Select<\/span>-Object<\/span> -ExpandProperty State
    \n<\/code><\/div>\n<\/div>\n

    Replace <VirtualMachineName> with the name of the virtual machine that you started. This command will display the state of the virtual machine. If the virtual machine is running, the state will be “Running”.<\/p>\n

    Alternative Method: Using PowerShell Script<\/h2>\n

    If you need to start a virtual machine from the command line frequently, you can create a PowerShell script to automate the process. Here’s how:<\/p>\n

      \n
    1. Open Notepad or any text editor.<\/li>\n
    2. Copy and paste the following code:<\/li>\n<\/ol>\n
      \n
      bash<\/span><\/div>\n
      $vmName<\/span> = \"<VirtualMachineName>\"<\/span>
      \n$vm<\/span> = Get-VM -Name $vmName<\/span>
      \nStart-VM -VM $vm<\/span>
      \n<\/code><\/div>\n<\/div>\n
        \n
      1. Replace <VirtualMachineName> with the name of the virtual machine that you want to start.<\/li>\n
      2. Save the file with a .ps1 extension, for example, “StartVM.ps1”.<\/li>\n<\/ol>\n

        To run the script, open Command Prompt as an administrator, navigate to the directory where the script is saved, and type the following command:<\/p>\n

        \n
        powershell -ExecutionPolicy RemoteSigned -File .\\StartVM.ps1
        \n<\/code><\/div>\n<\/div>\n

        This will start the virtual machine specified in the script.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n

        \n
        \n
        \n
        \"\"In addition to starting a Hyper-V virtual machine from the command line, there are other management tasks that can also be performed using PowerShell commands. These include stopping and restarting virtual machines, changing virtual machine settings, and creating new virtual machines.<\/div>\n<\/div>\n<\/div>\n<\/div>\n
        \n
        \n
        \n
        \n
        \n
        \n

        Here are a few examples of PowerShell commands that can be used to manage virtual machines:<\/p>\n

        Stopping a Virtual Machine<\/h3>\n

        To stop a running virtual machine, use the following command:<\/p>\n

        \n
        php<\/span><\/div>\n
        Stop-VM -Name <VirtualMachineName<\/span>><\/span>
        \n<\/span><\/code><\/div>\n<\/div>\n

        This will stop the virtual machine with the specified name.<\/p>\n

        Restarting a Virtual Machine<\/p>\n

        To restart a virtual machine, use the following command:<\/p>\n

        \n
        php<\/span><\/div>\n
        Restart-VM -Name <VirtualMachineName<\/span>><\/span>
        \n<\/span><\/code><\/div>\n<\/div>\n

        This will stop and then start the virtual machine with the specified name.<\/p>\n

        Changing Virtual Machine Settings<\/p>\n

        To change the settings of a virtual machine, use the following command:<\/p>\n

        \n
        php<\/span><\/div>\n
        Set-VM -Name <VirtualMachineName<\/span>><\/span> -MemoryStartupBytes <MemorySize<\/span>><\/span> -ProcessorCount <NumberOfProcessors<\/span>><\/span>
        \n<\/span><\/code><\/div>\n<\/div>\n

        Replace <VirtualMachineName> with the name of the virtual machine that you want to change the settings for. Replace <MemorySize> with the desired amount of memory for the virtual machine in bytes (for example, 1 GB = 1073741824 bytes). Replace <NumberOfProcessors> with the desired number of virtual processors for the virtual machine.<\/p>\n

        Creating a New Virtual Machine<\/h3>\n

        To create a new virtual machine, use the following command:<\/p>\n

        \n
        php<\/span><\/div>\n
        New-VM -Name <VirtualMachineName<\/span>><\/span> -MemoryStartupBytes <MemorySize<\/span>><\/span> -NewVHDPath <VHDPath<\/span>><\/span> -NewVHDSizeBytes <VHDSize<\/span>><\/span> -SwitchName <NetworkSwitchName<\/span>><\/span>
        \n<\/span><\/code><\/div>\n<\/div>\n

        Replace <VirtualMachineName> with the desired name for the new virtual machine. Replace <MemorySize> with the desired amount of memory for the virtual machine in bytes. Replace <VHDPath> with the path where the virtual hard disk (VHD) for the new virtual machine should be created. Replace <VHDSize> with the desired size of the VHD in bytes. Replace <NetworkSwitchName> with the name of the virtual switch that the virtual machine should use to connect to the network.<\/p>\n

        \n
        \n
        \n
        \n

        How to enable Hyper-V in Windows 10 using command line?<\/h2>\n<\/div>\n
        Enabling Hyper-V in Windows 10 using the command line is a straightforward process that involves using the Deployment Image Servicing and Management (DISM) tool. Here are the steps to follow:<\/div>\n<\/div>\n<\/div>\n<\/div>\n
        \n
        \n
        \n
        \n
        \n
        \n
          \n
        1. Open an elevated Command Prompt window by right-clicking the Start menu and selecting “Command Prompt (Admin)”.<\/li>\n
        2. Type the following command and press Enter to enable the Hyper-V feature:<\/li>\n<\/ol>\n
          \n
          ruby<\/span><\/div>\n
          DISM<\/span> \/Online<\/span> \/Enable<\/span>-Feature<\/span> \/All<\/span> \/FeatureName<\/span>:Microsoft-Hyper-V<\/span>
          \n<\/code><\/div>\n<\/div>\n
            \n
          1. Restart your computer to complete the installation of the Hyper-V feature.<\/li>\n
          2. Once your computer has restarted, open the Hyper-V Manager to create and manage virtual machines.<\/li>\n<\/ol>\n

            Alternatively, you can also use PowerShell to enable the Hyper-V feature. Here are the steps to follow:<\/h3>\n
              \n
            1. Open an elevated PowerShell window by right-clicking the Start menu and selecting “Windows PowerShell (Admin)”.<\/li>\n
            2. Type the following command and press Enter to enable the Hyper-V feature:<\/li>\n<\/ol>\n
              \n
              css<\/span><\/div>\n
              Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All<\/span>
              \n<\/code><\/div>\n<\/div>\n
                \n
              1. Restart your computer to complete the installation of the Hyper-V feature.<\/li>\n
              2. Once your computer has restarted, open the Hyper-V Manager to create and manage virtual machines.<\/li>\n<\/ol>\n

                Enabling Hyper-V using the command line is a quick and easy way to get started with virtualization on Windows 10. Whether you are a developer, IT professional, or just someone who wants to experiment with virtual machines, Hyper-V is a powerful tool that can help you get the job done.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n

                Conclusion<\/h2>\n

                Using PowerShell commands to manage Hyper-V virtual machines provides a fast and efficient way to perform management tasks without having to use the graphical user interface. Starting, stopping, and restarting virtual machines, changing virtual machine settings, and creating new virtual machines can all be accomplished using PowerShell commands. By learning to use these commands, Hyper-V<\/a> administrators can save time and streamline virtual machine management on Windows servers. Starting a Hyper-V virtual machine from the command line is a quick and easy way to manage virtual machines on Windows servers. By following the steps outlined in this article, you can start a virtual machine from the command line and automate the process using a PowerShell script.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n

                \n
                \n
                \n
                \"\"<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"

                How To Start Hyper V Virtual Machine From Command Line Hyper-V is a virtualization technology provided by Microsoft that enables you to create and manage virtual machines on Windows servers. While Hyper-V provides a graphical user interface for managing virtual machines, it is also possible to manage virtual machines from the command line. In this […]<\/p>\n","protected":false},"author":1,"featured_media":12810,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[81],"tags":[2568],"class_list":["post-13616","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-computer-language","tag-how-to-start-hyper-v-virtual-machine-from-command-line"],"yoast_head":"\nHow To Start Hyper V Virtual Machine From Command Line<\/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:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Start Hyper V Virtual Machine From Command Line\" \/>\n<meta property=\"og:description\" content=\"How To Start Hyper V Virtual Machine From Command Line Hyper-V is a virtualization technology provided by Microsoft that enables you to create and manage virtual machines on Windows servers. While Hyper-V provides a graphical user interface for managing virtual machines, it is also possible to manage virtual machines from the command line. In this […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/\" \/>\n<meta property=\"og:site_name\" content=\"Star Language Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-09T16:40:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"341\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Starla\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Starla\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/\"},\"author\":{\"name\":\"Starla\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc\"},\"headline\":\"How To Start Hyper V Virtual Machine From Command Line\",\"datePublished\":\"2023-03-09T16:40:35+00:00\",\"dateModified\":\"2023-03-09T16:40:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/\"},\"wordCount\":1085,\"publisher\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp\",\"keywords\":[\"How To Start Hyper V Virtual Machine From Command Line\"],\"articleSection\":[\"Computer Language\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/\",\"url\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/\",\"name\":\"How To Start Hyper V Virtual Machine From Command Line\",\"isPartOf\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp\",\"datePublished\":\"2023-03-09T16:40:35+00:00\",\"dateModified\":\"2023-03-09T16:40:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage\",\"url\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp\",\"contentUrl\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp\",\"width\":640,\"height\":341,\"caption\":\"How To Start Hyper V Virtual Machine From Command Line\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.starlanguageblog.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Start Hyper V Virtual Machine From Command Line\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#website\",\"url\":\"https:\/\/www.starlanguageblog.com\/\",\"name\":\"Star Language Blog\",\"description\":\"Educative\",\"publisher\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.starlanguageblog.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#organization\",\"name\":\"Star Language Blog\",\"url\":\"https:\/\/www.starlanguageblog.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp\",\"contentUrl\":\"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp\",\"width\":100,\"height\":50,\"caption\":\"Star Language Blog\"},\"image\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc\",\"name\":\"Starla\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g\",\"caption\":\"Starla\"},\"sameAs\":[\"https:\/\/starlanguageblog.com\"],\"url\":\"https:\/\/www.starlanguageblog.com\/author\/dwaipayan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Start Hyper V Virtual Machine From Command Line","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:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/","og_locale":"en_US","og_type":"article","og_title":"How To Start Hyper V Virtual Machine From Command Line","og_description":"How To Start Hyper V Virtual Machine From Command Line Hyper-V is a virtualization technology provided by Microsoft that enables you to create and manage virtual machines on Windows servers. While Hyper-V provides a graphical user interface for managing virtual machines, it is also possible to manage virtual machines from the command line. In this […]","og_url":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/","og_site_name":"Star Language Blog","article_published_time":"2023-03-09T16:40:35+00:00","og_image":[{"width":640,"height":341,"url":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp","type":"image\/webp"}],"author":"Starla","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Starla","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#article","isPartOf":{"@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/"},"author":{"name":"Starla","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc"},"headline":"How To Start Hyper V Virtual Machine From Command Line","datePublished":"2023-03-09T16:40:35+00:00","dateModified":"2023-03-09T16:40:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/"},"wordCount":1085,"publisher":{"@id":"https:\/\/www.starlanguageblog.com\/#organization"},"image":{"@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp","keywords":["How To Start Hyper V Virtual Machine From Command Line"],"articleSection":["Computer Language"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/","url":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/","name":"How To Start Hyper V Virtual Machine From Command Line","isPartOf":{"@id":"https:\/\/www.starlanguageblog.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage"},"image":{"@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage"},"thumbnailUrl":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp","datePublished":"2023-03-09T16:40:35+00:00","dateModified":"2023-03-09T16:40:35+00:00","breadcrumb":{"@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#primaryimage","url":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp","contentUrl":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/12\/programming-g34382f277_640.webp","width":640,"height":341,"caption":"How To Start Hyper V Virtual Machine From Command Line"},{"@type":"BreadcrumbList","@id":"https:\/\/www.starlanguageblog.com\/how-to-start-hyper-v-virtual-machine-from-command-line\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.starlanguageblog.com\/"},{"@type":"ListItem","position":2,"name":"How To Start Hyper V Virtual Machine From Command Line"}]},{"@type":"WebSite","@id":"https:\/\/www.starlanguageblog.com\/#website","url":"https:\/\/www.starlanguageblog.com\/","name":"Star Language Blog","description":"Educative","publisher":{"@id":"https:\/\/www.starlanguageblog.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.starlanguageblog.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.starlanguageblog.com\/#organization","name":"Star Language Blog","url":"https:\/\/www.starlanguageblog.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/","url":"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp","contentUrl":"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp","width":100,"height":50,"caption":"Star Language Blog"},"image":{"@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc","name":"Starla","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g","caption":"Starla"},"sameAs":["https:\/\/starlanguageblog.com"],"url":"https:\/\/www.starlanguageblog.com\/author\/dwaipayan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/posts\/13616","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/comments?post=13616"}],"version-history":[{"count":0,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/posts\/13616\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/media\/12810"}],"wp:attachment":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/media?parent=13616"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/categories?post=13616"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/tags?post=13616"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}