In linux bash there's a command command which can execute the "real" command even if you have a function name or a script filename that is named equal to that command.
function ping(){
echo do nothing
}
command ping
will still work.
In windows batch, I have a file ping.cmd which goes into loop if I run ping inside of it.
What's the equivalent of command in windows batch?