Linux SSH 세션을 통해 Windows 호스트에서 Windows 스크립트 또는 명령 실행

Linux SSH 세션을 통해 Windows 호스트에서 Windows 스크립트 또는 명령 실행

Linux 서버에서 Windows 서버의 스크립트나 명령을 실행할 수 있는 방법이 있습니까? 검색했지만 간단한 해결책을 찾을 수 없는 것 같습니다.

답변1

winexe를 사용하여 Linux에서 Windows 명령을 실행할 수 있습니다. 이는 psexec와 유사하지만 Linux에서는 RPC를 사용합니다.

./winexe -U user%password //192.168.0.1 ipconfig

또는

./winexe --authentication-file=FILE //192.168.0.1 'cmd.exe /c echo "this is running on windows"'

원천:https://sourceforge.net/projects/winexe/

관련 정보