```batch
echo off
net use * /del /y
net use \\cai\ipc$ "412" /user:"admin"
shutdown -s -m\\192.168.1.103 -t0 -f
exit
```
I want to use this to shut down another machine in the LAN. The first and second commands run successfully, but the third command prompts "The network path was not found". How to solve it?
echo off
net use * /del /y
net use \\cai\ipc$ "412" /user:"admin"
shutdown -s -m\\192.168.1.103 -t0 -f
exit
```
I want to use this to shut down another machine in the LAN. The first and second commands run successfully, but the third command prompts "The network path was not found". How to solve it?
