Advertisement
zefie

Compress VS Project without bins

Aug 12th, 2014
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. set sevenza="C:\Program Files\7-Zip\7z.exe"
  3. set fn=%~n1
  4. set indir=%1
  5. call set outdir=%%indir:\%fn%"=%%
  6. set outdir=%outdir:"=%
  7. set outfile=%outdir%\%fn%.7z
  8. cd "%outdir%"
  9. %sevenza% a -t7z -m0=lzma2 -mx=9 -mfb=128 -md=64m -ms=on -xr!bin -xr!obj "%outfile%" %1
  10. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement