tags:

views:

607

answers:

1

I'm writing a help desk application and would like to allow my users to initiate a Remote Assistance session on a remote PC. This can be done via Help in Windows XP, but I haven't been able to find any code sample in .NET. Thanks!

A: 

http://msdn.microsoft.com/en-us/library/ms811079.aspx

You may need P/Invoke to actually access these functions.


On further review, there is some source on CodePlex to generate remote assistance tickets. Correct me if I'm wrong, but you are looking to generate a ticket for remote assistance on the client end. Check out http://www.codeplex.com/RemoteAssistHelper

Rob Haupt
Thanks - I found the same article, but it doesn't provide a C# or VB code sample, which is what I'm looking for.