I’m using .NET, and going crazy trying to find any helpful API that lets me transfer a file across a LAN network (trough admin credentials of course) and then execute it on that machine.
I’ve read some thing using WMI, but googling for “.net WMI copy files” or “.net WMI execute files” isn’t helping me at all.
Any references would be greatly appreciated.
EDIT
I can’t use a third party tool such as PsExec (although it does perfectly what I need). This is because of the license involved with PsExec I cannot distribute it with my application.
I don’t think that this is easily achieved. You can however copy the exe with .net. And then (also from .net, with
Process.Start) invoke psExec and make it execute the program remotely.