0

I'm trying to create a dll as add in to Terminal Server to create a virtual channel communication with the server.

I found this example (http://www.codeproject.com/Articles/16374/How-to-Write-a-Terminal-Services-Add-in-in-Pure-C), which unfortunately doesn't works on 64 bit client (on 32 bit client working properly). I followed all the instructions of the author but nothing.

Can someone who has used this example help me?

Thanks, Luigi.

seva titov
  • 11,720
  • 2
  • 35
  • 54
Gigi
  • 315
  • 7
  • 23
  • I'm trying to do similar thing using `UnmanagedExports` extension. This allows me to use `DllExport` to x64. I'm struggling with second part-server application that is started on RDP desktop. If You want to exchange some experience please leave a comment with Your email and I'll write You back – Misiu Feb 10 '15 at 14:02

2 Answers2

2

He has improved the program further at codeplex:

http://rdpaddins.codeplex.com/

Derek
  • 7,615
  • 5
  • 33
  • 58
0

I found the solution. You need to download the new version of the application (available here) and in Visual Studio project properties , Build events tab replace /$(PlatformName) with /x64 constant in Post-build events command line box. With the environment variable it doesn't works.

Thanks.

Gigi
  • 315
  • 7
  • 23