Skip to content

Instantly share code, notes, and snippets.

@jpluimers
Created May 9, 2014 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpluimers/bea0d95fccf15eb594ae to your computer and use it in GitHub Desktop.
Save jpluimers/bea0d95fccf15eb594ae to your computer and use it in GitHub Desktop.
Finds and starts Cntlm.exe in verbose mode.
call :start %ProgramFiles%
call :start %ProgramFiles(x86)%
goto :end
:start
startlocal
set cntlm="%*\Cntlm\Cntlm.exe"
echo %cntlm%
if exist %cntlm% start "Cntlm verbose" %cntlm% -v
endlocal
goto :end
:end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment