ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    HyperVServer Build

    IT Discussion
    11
    67
    7.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • JoelJ
      Joel
      last edited by

      0_1532638980066_disk1.PNG

      1 Reply Last reply Reply Quote 0
      • ObsolesceO
        Obsolesce
        last edited by Obsolesce

        diskpart
        select disk 0
        create partition primary
        select partition 5
        format fs=ntfs label="DATA" quick
        assign
        list disk
        list part
        list vol
        
        1 Reply Last reply Reply Quote 1
        • NashBrydgesN
          NashBrydges @Obsolesce
          last edited by

          @obsolesce I don't have to run any firewall powershell commands. The steps I listed above are literally all I need to do. I did this on a server about 10 days ago. Installed perfectly on a Dell R420.

          ObsolesceO 1 Reply Last reply Reply Quote 0
          • NashBrydgesN
            NashBrydges @Joel
            last edited by

            @joel If you followed the steps I layed out, you HAVE to log in as WSMAN\username where username is the user you setup on the Hyper-V server. I don't know why but without "WSMAN", regardless of the workgroup name, the remote management doesn't work.

            1 Reply Last reply Reply Quote 0
            • ObsolesceO
              Obsolesce @NashBrydges
              last edited by

              @nashbrydges said in HyperVServer Build:

              @obsolesce I don't have to run any firewall powershell commands. The steps I listed above are literally all I need to do. I did this on a server about 10 days ago. Installed perfectly on a Dell R420.

              I never mentioned the firewall.

              I mentioned in my first response here to make sure the host and management PC are fully up to date.

              NashBrydgesN 1 Reply Last reply Reply Quote 0
              • NashBrydgesN
                NashBrydges @Obsolesce
                last edited by

                @obsolesce Haha, sorry, this was supposed to be a response to Joel's post about firewall powershell. Tagged the wrong person.

                1 Reply Last reply Reply Quote 0
                • JoelJ
                  Joel
                  last edited by

                  This server build is frustrating...I managed to get the HyperV server installed and able to connect to it via Hyper-V Manager. However when trying to boot the Guest VM via my CDRom (WindowsServer2016)m it tells me the BIOS was locked and the OS was tied to vendor. Note: I was using the original CD that I got shipped with the server!!!

                  I then tried burning an ISO (generic) to USB but was unable to mount and boot from it as the HyperV Manager couldnt see the USB plugged into the Host! I read about making it 'offline' first but when attempting that, it turns out i couldnt make removable media offline!!

                  This thing is a nightmare!
                  Thinking of packing in Hyper-V!

                  ObsolesceO black3dynamiteB NashBrydgesN matteo nunziatiM 4 Replies Last reply Reply Quote 0
                  • ObsolesceO
                    Obsolesce @Joel
                    last edited by

                    @joel said in HyperVServer Build:

                    This server build is frustrating...I managed to get the HyperV server installed and able to connect to it via Hyper-V Manager. However when trying to boot the Guest VM via my CDRom (WindowsServer2016)m it tells me the BIOS was locked and the OS was tied to vendor. Note: I was using the original CD that I got shipped with the server!!!

                    I then tried burning an ISO (generic) to USB but was unable to mount and boot from it as the HyperV Manager couldnt see the USB plugged into the Host! I read about making it 'offline' first but when attempting that, it turns out i couldnt make removable media offline!!

                    This thing is a nightmare!
                    Thinking of packing in Hyper-V!

                    Why don't you just mount the ISO in a virtual cdrom for the VM?

                    1 Reply Last reply Reply Quote 2
                    • black3dynamiteB
                      black3dynamite @Joel
                      last edited by

                      @joel said in HyperVServer Build:

                      This server build is frustrating...I managed to get the HyperV server installed and able to connect to it via Hyper-V Manager. However when trying to boot the Guest VM via my CDRom (WindowsServer2016)m it tells me the BIOS was locked and the OS was tied to vendor. Note: I was using the original CD that I got shipped with the server!!!

                      I then tried burning an ISO (generic) to USB but was unable to mount and boot from it as the HyperV Manager couldnt see the USB plugged into the Host! I read about making it 'offline' first but when attempting that, it turns out i couldnt make removable media offline!!

                      This thing is a nightmare!
                      Thinking of packing in Hyper-V!

                      Copy the iso to the server instead.

                      1 Reply Last reply Reply Quote 1
                      • NashBrydgesN
                        NashBrydges @Joel
                        last edited by

                        @joel

                        Sometimes Hyper-V will puke all over itself when trying to install from network ISO so in most cases, I end up copying the ISO from the remote network folder to a local folder on the Hyper-V server after I've created the network drive.

                        1. Create network drive on Hyper-V server from cmd with net use z: \\10.10.10.200\some_folder /persistent:yes /user:username "supersecretpassword"
                        2. Create local folder for ISOs on the Hyper-V server from cmd run mkdir c:\ISO
                        3. Copy the ISO from the network drive to the new ISO folder from cmd with copy z:\my_iso.iso c:\ISO

                        If you don't want to keep the mapped network drive, remove it from cmd with net use z: /delete

                        The key is to have the ISO locally stored on the Hyper-V server. Once you do, you can use Hyper-V Manager to navigate to the local folder on the Hyper-V server to connect the ISO to use to create the VM.

                        JaredBuschJ 1 Reply Last reply Reply Quote 4
                        • PhlipElderP
                          PhlipElder
                          last edited by

                          Please have a look at these:
                          http://www.mpecsinc.com/powershell-guide-standalone-hyper-v-server/

                          http://www.mpecsinc.com/powershell-guide-new-vm-powershell/

                          The first is a complete set of PowerShell and CommandLine to run on the newly installed Hyper-V Server OS.

                          The second is the PowerShell to use to set up a VM.

                          The simplest thing to do is set up the second partition on the host, create a folder called ISOs, copy the necessary ISO files into that folder, and tweak the above PowerShell to point to that location.

                          Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                          JaredBuschJ 2 Replies Last reply Reply Quote 0
                          • JaredBuschJ
                            JaredBusch @PhlipElder
                            last edited by

                            @phlipelder said in HyperVServer Build:

                            The simplest thing to do is set up the second partition on the host,

                            No, never.

                            1 Reply Last reply Reply Quote 0
                            • JaredBuschJ
                              JaredBusch @PhlipElder
                              last edited by

                              @phlipelder said in HyperVServer Build:

                              Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                              It does not work like that.

                              PhlipElderP 1 Reply Last reply Reply Quote 0
                              • JaredBuschJ
                                JaredBusch @NashBrydges
                                last edited by JaredBusch

                                @nashbrydges said in HyperVServer Build:

                                @joel

                                Sometimes Hyper-V will puke all over itself when trying to install from network ISO so in most cases, I end up copying the ISO from the remote network folder to a local folder on the Hyper-V server after I've created the network drive.

                                1. Create network drive on Hyper-V server from cmd with net use z: \\10.10.10.200\some_folder /persistent:yes /user:username "supersecretpassword"
                                2. Create local folder for ISOs on the Hyper-V server from cmd run mkdir c:\ISO
                                3. Copy the ISO from the network drive to the new ISO folder from cmd with copy z:\my_iso.iso c:\ISO

                                If you don't want to keep the mapped network drive, remove it from cmd with net use z: /delete

                                The key is to have the ISO locally stored on the Hyper-V server. Once you do, you can use Hyper-V Manager to navigate to the local folder on the Hyper-V server to connect the ISO to use to create the VM.

                                I always make a C:\ISO_Files folder to copy them to on the host.

                                1 Reply Last reply Reply Quote 2
                                • PhlipElderP
                                  PhlipElder @JaredBusch
                                  last edited by

                                  @jaredbusch said in HyperVServer Build:

                                  @phlipelder said in HyperVServer Build:

                                  Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                                  It does not work like that.

                                  Please clarify?

                                  JaredBuschJ 1 Reply Last reply Reply Quote 0
                                  • JaredBuschJ
                                    JaredBusch @PhlipElder
                                    last edited by

                                    @phlipelder said in HyperVServer Build:

                                    @jaredbusch said in HyperVServer Build:

                                    @phlipelder said in HyperVServer Build:

                                    Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                                    It does not work like that.

                                    Please clarify?

                                    There is no desktop experience in Hyper-V. This is basic Hyper-V 101 knowledge here.

                                    PhlipElderP 1 Reply Last reply Reply Quote 1
                                    • PhlipElderP
                                      PhlipElder @JaredBusch
                                      last edited by PhlipElder

                                      @jaredbusch said in HyperVServer Build:

                                      @phlipelder said in HyperVServer Build:

                                      @jaredbusch said in HyperVServer Build:

                                      @phlipelder said in HyperVServer Build:

                                      Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                                      It does not work like that.

                                      Please clarify?

                                      There is no desktop experience in Hyper-V. This is basic Hyper-V 101 knowledge here.

                                      To clarify:

                                      Note, that since the guest VMs are Windows based, the license and installer files purchased to run those VMs can be used to install the host OS in Desktop Experience Mode and activate using the supplied key.

                                      JaredBuschJ 1 Reply Last reply Reply Quote 0
                                      • JaredBuschJ
                                        JaredBusch @PhlipElder
                                        last edited by

                                        @phlipelder said in HyperVServer Build:

                                        @jaredbusch said in HyperVServer Build:

                                        @phlipelder said in HyperVServer Build:

                                        @jaredbusch said in HyperVServer Build:

                                        @phlipelder said in HyperVServer Build:

                                        Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                                        It does not work like that.

                                        Please clarify?

                                        There is no desktop experience in Hyper-V. This is basic Hyper-V 101 knowledge here.

                                        To clarify:

                                        Note, that since the guest VMs are Windows based, the licensed and installer files purchased to run those VMs can be used to install the host OS in Desktop Experience Mode and activate using the supplied key.

                                        /sigh

                                        FFS No. this is not how anything works.

                                        The OP is installing Hyper-V Server, as he should. Not Windows Server.

                                        PhlipElderP 1 Reply Last reply Reply Quote 3
                                        • PhlipElderP
                                          PhlipElder @JaredBusch
                                          last edited by

                                          @jaredbusch said in HyperVServer Build:

                                          @phlipelder said in HyperVServer Build:

                                          @jaredbusch said in HyperVServer Build:

                                          @phlipelder said in HyperVServer Build:

                                          @jaredbusch said in HyperVServer Build:

                                          @phlipelder said in HyperVServer Build:

                                          Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                                          It does not work like that.

                                          Please clarify?

                                          There is no desktop experience in Hyper-V. This is basic Hyper-V 101 knowledge here.

                                          To clarify:

                                          Note, that since the guest VMs are Windows based, the licensed and installer files purchased to run those VMs can be used to install the host OS in Desktop Experience Mode and activate using the supplied key.

                                          /sigh

                                          FFS No. this is not how anything works.

                                          The OP is installing Hyper-V Server, as he should. Not Windows Server.

                                          Take a deep breath.

                                          I am suggesting that the OP instead use the OS installer files that came with the purchased license(s) to avoid the expressed frustration with the non-GUI Hyper-V Server.

                                          That better? 🙂

                                          JaredBuschJ ObsolesceO 2 Replies Last reply Reply Quote 0
                                          • JaredBuschJ
                                            JaredBusch @PhlipElder
                                            last edited by

                                            @phlipelder said in HyperVServer Build:

                                            @jaredbusch said in HyperVServer Build:

                                            @phlipelder said in HyperVServer Build:

                                            @jaredbusch said in HyperVServer Build:

                                            @phlipelder said in HyperVServer Build:

                                            @jaredbusch said in HyperVServer Build:

                                            @phlipelder said in HyperVServer Build:

                                            Note that since the guest VMs are Windows based, the Windows Server Standard license covers installing the host OS in Desktop Experience Mode using the Server Standard installer files and activating with the supplied key that came with the license.

                                            It does not work like that.

                                            Please clarify?

                                            There is no desktop experience in Hyper-V. This is basic Hyper-V 101 knowledge here.

                                            To clarify:

                                            Note, that since the guest VMs are Windows based, the licensed and installer files purchased to run those VMs can be used to install the host OS in Desktop Experience Mode and activate using the supplied key.

                                            /sigh

                                            FFS No. this is not how anything works.

                                            The OP is installing Hyper-V Server, as he should. Not Windows Server.

                                            Take a deep breath.

                                            I am suggesting that the OP instead use the OS installer files that came with the purchased license(s) to avoid the expressed frustration with the non-GUI Hyper-V Server.

                                            That better? 🙂

                                            No, actually, because you were not suggesting that.

                                            You never recommended that the OP wipe his install completely and then install a Windows Server instead of Hyper-V Server.

                                            You incorrectly spewed misleading information.

                                            Additionally, there are nearing on absolute zero situations where anyone should ever install Windows Server on the hardware.

                                            PhlipElderP 1 Reply Last reply Reply Quote 1
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 1 / 4
                                            • First post
                                              Last post