I'm 100% green when it comes to transferring data over a network... I've never done it before, and I have no idea what it entails. What I want doesn't seem like it would be too hard, however.
I have a very simple forms project in Visual Studio, just something I whipped up to sync up two media players. Basically, I need to open an application (With an argument) on my laptop by pressing a button on my desktop.
I know that to do it locally, I'd run...
Process.Start(@"C:\Program Files (x86)\MPC-HC\MPC-HC.exe", file);
So I'm just looking for a way to execute that command on my laptop via an app on my desktop.