up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to figure out how to write a method to not use the System.Diagnostics.Process class but still send messages to other computers as if it's from net.exe, even though it isn't.

If it matters, I'm writing an all-in-one framework for my workplace and combining key features we use into one framework/.dll is a huge plus.

link|improve this question

5  
Note to newbie: your not supposed to sign your posts ("-Zack"). The "thanks" is ok, though some frown on that as well. – Neil N Jun 24 '09 at 18:41
feedback

2 Answers

up vote 4 down vote accepted

You can use the win32 api NetMessageBufferSend for this.

You can use P/invoke to call it from C#.

Note that msdn states:

[This function is not supported as of Windows Vista because the messenger service is not supported.]

link|improve this answer
Thanks. I'll use this for now until I research steamer's suggestion more. – Zack Jun 24 '09 at 19:39
The messenger service has been disabled since WinXP Service Pack 2 because of spammers abusing it. – ZippyV Dec 29 '09 at 10:07
feedback

Use the Messenger Service API: http://msdn.microsoft.com/en-us/library/ms630960(VS.85).aspx

link|improve this answer
Thanks! I'll investigate this at a later time. I'll try fretje's idea first then look into using that API – Zack Jun 24 '09 at 19:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.