Use PSexec para executar um arquivo .bat remoto no ComputerB
Exemplo. Execute isso no ComputerA
psexec -u admin -p Pass123 \192.168.1.103 -s -d cmd.exe /c "C:\Windows\Test.bat"
Nome do arquivo em lote. Test.bat Usuário e Passe admin e Pass123
A localização é C: \ Windows
-s Run remote process in the SYSTEM account (use with caution).
-d Don’t wait for the application to terminate. Only use for non-interactive applications.
/C Carries out the command.
Cmd.exe Starts the .bat
192.168.1.103 Example Ip of the Computer.