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 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