Cannot copy and paste between Hyper-V and windows 11

Lara Varner 16 Reputation points
2022-04-10T17:35:31.137+00:00

I cannot copy and paste (not text, not file) anything between Hyper-V Window 11 Pro
I have made sure that the Guest Services was checking in the VM settings and that Use enhanced session mode is check in Hyper-V Settings.

Windows for business Windows Client for IT Pros Storage high availability Virtualization and Hyper-V
{count} votes

3 answers

Sort by: Most helpful
  1. Anonymous
    2022-04-10T17:43:08.427+00:00

    That's normal and expected behavior for a console session. Try using an RDP session instead.

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    1 person found this answer helpful.

  2. Limitless Technology 44,751 Reputation points
    2022-04-12T08:11:18.373+00:00

    Hello
    ,
    Thank you for your question and reaching out.
    Well
    Check This
    Here is a quick and easy way to get this work efficiently:

    If you're running the VM, turn it off first.
    find your virtual hard disk image file .vhd of your VM
    Right click on this file and select mount
    This will give "System Reserved" and "Local Disk" drives.
    Open the "Local Disk" drive (this is the OS drive on VM)
    Go there and paste you files.
    Finally unmount or eject one of the drivers
    Run the VM and go the c:\ drive there and you will find your files.

    It can be done via Powershell.

    First, create a session with New-PSSession from the HOST:

    $s = New-PSSession -VMName <VMName> -Credential (Get-Credential)
    Then, from the HOST, copy the file via Copy-Item using the session:

    Copy-Item -ToSession $s -Path C:\host_path\data.txt -Destination C:\guest_path\
    Also
    This is possible in Hyper-V Post windows server 2012 R2.

    This functionality is known as "Enhanced Session Mode" in windows server 2012 R2.

    Once you enable Enhance session mode in the Hyper-V setting for the Server you need to just start the VM and select "Connect" once prompted.

    Now you will be able to copy paste files and folders without having RDP of the server

    And see if it helps,


    --If the reply is helpful, please Upvote and Accept as answer--


  3. Michael Barnes 0 Reputation points
    2024-05-10T00:26:16.0633333+00:00

    In my experience, I find it takes 1-2 minutes before copy&paste starts working between my host OS and the VM. The VM does not appear to be "busy" in that period; it is just sitting mostly idle with little CPU usage, so I don't know why it takes so long to "enable" the copy-paste functionality.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.