thanks for this nice tool.
I would like to run it fully unattended from a batch script but lpatch always ask me to answer y/n/c.
1/ creation of lpatch.dat
original dll and binary modified dll put all together in r:\temp folder
Code:
mlpatch original.dll patched.dll "anti-msopa"
2/ script to patch the dll
Code:
pushd "pathname"
lpatch_nogui -y lpatch.dat original.dll
popd
also tried
Code:
pushd "some_path"
lpatch_nogui lpatch.dat original.dll yes
popd
in both cases, lpatch always ask me to confirm choice (y/n/c):
what's wrong with syntax used in my command?
-y or yes should give answer and run lpatch unattended?