Shapeshifter icon indicating copy to clipboard operation
Shapeshifter copied to clipboard

Remote Desktop Connection Ctrl V not working

Open SmartManoj opened this issue 7 years ago • 11 comments
trafficstars

In RDCs , ctrl v does not work but only context menu paste option

SmartManoj avatar May 10 '18 06:05 SmartManoj

Also another ticket for RDP #173

But this one is possibly different. I saw code suspiciousProcesses which includes TeamViewer and RDP (mstsc) I thought.

I don't know if it is supposed to work right now. I think it should work.

KoalaBear84 avatar May 10 '18 09:05 KoalaBear84

And in AnyDesk too

SmartManoj avatar May 10 '18 10:05 SmartManoj

I think RDP copying is still broken, but will leave this open and confirm once I get time.

ffMathy avatar May 11 '18 07:05 ffMathy

How does it "Not work"? Please describe exactly what is happening.

ffMathy avatar May 11 '18 14:05 ffMathy

It does nothing when pressing ctrl v .

SmartManoj avatar May 11 '18 14:05 SmartManoj

Tested it with mRemote. If not fullscreen it will show overlay, but does not paste because the keypresses are not propagated to the underlying ActiveX control.

If in fullscreen it does not show overlay, but paste over and over again like Shapeshifter is not running.

Should be the same experience as with mstsc / official Remote Desktop.

KoalaBear84 avatar May 13 '18 15:05 KoalaBear84

Workaround until fix AHK win+v to activate while on rdp

#SingleInstance, force
Suspend, 
#v::
Suspend, 
return
^v::
c:=Clipboard
c:=RegExReplace(c, "\r\n?|\n\r?", "`n")
SendInput {Raw}%c%
MsgBox, %c%
return 

SmartManoj avatar Jun 06 '18 11:06 SmartManoj

It would also be nice if Shapeshifter should disable hotkey's when MSTSC of other RDP tools are open so Windows will take over.

Maybe look into this as a workaround?

KoalaBear84 avatar Jun 07 '18 05:06 KoalaBear84

@KoalaBear84 #469

SmartManoj avatar Aug 05 '18 23:08 SmartManoj

Another workaround - ahk ^v::Send {AppsKey}{p}

SmartManoj avatar Aug 05 '18 23:08 SmartManoj

It would also be nice if Shapeshifter should disable hotkey's when MSTSC of other RDP tools are open so Windows will take over.

Maybe look into this as a workaround?

How to do this?

SmartManoj avatar Nov 30 '18 06:11 SmartManoj