I have next to no knowledge of code so forgive my ignorance. I'm trying to run
netsh winsock reset
and
netsh int ipv4 reset
on a single command line. I tried using & and && but only the first command is executed.
Here's what I got from the other answers on here:
cmd /K netsh winsock reset & netsh int ipv4 reset
How can I get it to run the second command?
cmd /k "command&command"/cnot/k.cmd /K command ^& command(orcmd /C command ^& commandif you want the command window to close automatically afterwards)