I just want to send Commands(Eg.00LI002LE99) to an local IP, 192.168.1.186 9760, I am trying to send that command using Batch programming,
I have tried :
1.
@echo off
cd..
cd C:\nc
nc 192.168.1.180 9760
00LI002LE99
end
2.
echo 00LI002LE99| nc 192.168.1.186 9760
I can open the socket, but i cant send that command. Please help me on this.