
As an IT consultant working with many clients, I increasingly have to deal with restricted VDIs. It is very common for these VDIs to have the clipboard feature disabled. As a result, I have to enter long, complicated passwords repeatedly by hand. Even worse, sometimes I have to type long URLs and UNC paths that the clients email me.
Today, I configured the solution documented in this article.
Press Ctrl+Alt+V inside the VDI to type out the text you copied outside it.

You should be allowed to install software on your local machine (not inside the VDI).
Create a new file TypeFromClipboard.ahk with the following contents:
^!v::{if !ClipWait(2)returnSend "{Ctrl up}{Alt up}{Shift up}"Sleep 300text := StrReplace(A_Clipboard, "`r`n", "`n")SendEvent "{Raw}" text}
TypeFromClipboard.ahk
Press Win+R
Type: shell:startup
Press Enter
Put a shortcut to TypeFromClipboard.ahk into this folder
Now you can easily paste text into VDIs that block the clipboard functionality. Just copy text outside the VDI and use Ctrl+Alt+V to type it inside the VDI.




