I'm trying to write a Terminal Services add-in with .N开发者_如何学Pythonet (VB or C#) and am following this project on Code Project: http://www.codeproject.com/KB/system/TSAddinInCS.aspx
However, when trying to run this on a 64 bit Windows 7 OS, it doesn't run at all. The client portion never gets launched. Has anyone run into this and found a way to make this work?
We ended up going with Remote Executer For Terminal Server to handle this.
We had to talk to the developer and have him build a 64-bit client but he did that and now we're using this solution. It's working very well, just thought I'd post an update for any future searches.
I know this is an old thread, but in case someone is still using the CP example like I did: the ExportDll tool from the CP example is an old version, the newer version at http://www.codeproject.com/Articles/9150/Execute-a-function-in-any-Win-DLL-Reflection-in has a switch "/x64" to rebuild the IL into 64-bit assembly, which is required to work with x64 mstsc.exe
精彩评论