I have the code below in a .bat and I have a button in TC to run that .bat
Code: Select all
ipconfig /all
pause
How can I do this, or is it impossible?
Thanks in advance!
Moderators: Hacker, petermad, Stefan2, white
Code: Select all
ipconfig /all
pause
Indeed, I don't notice a difference with or without the " & pause""/k" and pause is doubled feature here, so you could maybe drop this pause command
Code: Select all
cmd: cmd /c
param: ipconfig /all & pause