Paste uo32a Batchfile
@title LRZIP Is Compressing %1 @echo off set lrzBaseDir=C:\Program Files (x86)\LRZIP set options=-U -L9 -vv :START set /p e=Encrypt? (y/n): set isEncrypting="" if %e%==y set isEncrypting=1 if %e%==n set isEncrypting=1 CLS if %isEncrypting%==1 ( del %1.lrz if %e%==y set options=-e %options% ) else ( echo Invalid Selection...Try Again.... & goto START ) :COMPRESS "%lrzBaseDir%\lrzip+libs\lrzip.exe" %options% %1 :END @title Compressing of %1 Completed pause exit