답변:
WMIC 또는 SCHTASKS를 사용할 수 있습니다.
1) SCHTASKS :
SCHTASKS /s remote_machine /U username /P password /create /tn "On demand demo" /tr "C:\some.bat" /sc ONCE /sd 01/01/1910 /st 00:00
SCHTASKS /s remote_machine /U username /P password /run /TN "On demand demo"
2) WMIC (wmic는 시작된 프로세스의 pid를 리턴합니다)
WMIC /NODE remote_machine /user user /password password process call create "c:\some.bat","c:\exec_dir"