How to execute program on remote computer using any language?

ziosnim의 이미지

Dear all,

How to execute program on remote computer using any language?

I have tested it with Win32_Process class of WMI. On the local host, notepad.exe program started successfully.
But we don't solve it on remote computer.

Win32_Process class function can't use due to security reason.

So, we find an another way.

Architecture:

Local host's Command Prompt: "xxx.exe 1 2 3" or "java xxx 1 2 3"
=> xxx programe execute with "yyy.exe 1 2 3" on the remote computer.

Thank you in advance.