I\'m looking for a simple way to test if an executable exists in the PATH environment variable from a Windows batch file.
Usage of external tools not provided by th
Use command : powershell Test-Path "exe which you looking for"
It will return True if its present, otherwise False.