원격 컴퓨터에서 로컬 박쥐 파일을 실행하는 방법


8

psexec를 사용하여 원격 컴퓨터 (Windows 7)에서 로컬 박쥐 파일을 실행할 수 있습니까? 아니면 먼저 원격 위치로 복사 한 다음 실행해야합니까?

답변:


7

SysInternals Suite의 일부인 psexec 를 사용 하는 것이 좋습니다 .

psexec \\remotemachine -u remoteuser -i -d cmd -c localdisk:\folder\batchfile.bat

-c 로컬 경로에서 복사합니다


0

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"
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.