zeroresx.bat 173 B

12345
  1. @echo off
  2. rem This will zero out all the resx files. It will cut down on the exe and dll sizes.
  3. type nul > zerobyte
  4. for %%f in (*.resx) do copy /y zerobyte %%f
  5. del zerobyte