Batch file that finds and starts Cntlm.exe in verbose mode.
Posted by jpluimers on 2015/04/13
As a follow up on the Cntlm configuration post last week, here is a small batch file that will find Cntlm.exe (on x86 and x64 systems) then start it in verbose mode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
–jeroen






Leave a comment