Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
1.0 KiB

  1. @echo off
  2. rem lcbat -f c:\wass\test\lcbat.log -r lcinf\notepad.exe.lc -m c:\nt\tools\ploc\1250map.inf -l 0x418 -v us\notepad.exe.tok pseudo\notepad.exe.tok
  3. set FileName=%1
  4. set FilePath=%2
  5. pushd %tmpBinPath%\resources
  6. if Not exist %tmpBinPath%\resources\BVTlogs\%FilePath% md %tmpBinPath%\resources\BVTlogs\%FilePath%
  7. if exist lcinf\%FileName%.lc (
  8. echo lcbat.exe -f BVTlogs\%FilePath%\%FileName%.xml -r lcinf\%FileName%.lc -m %mapinf% -l %OutputLanguage% -v us\%FilePath%\%FileName%.tok pseudo\%FilePath%\%FileName%.tok
  9. lcbat.exe -f BVTlogs\%FilePath%\%FileName%.xml -r lcinf\%FileName%.lc -m %mapinf% -l %OutputLanguage% -v us\%FilePath%\%FileName%.tok pseudo\%FilePath%\%FileName%.tok
  10. ) else (
  11. echo lcbat.exe -f BVTlogs\%FilePath%\%FileName%.xml -m %mapinf% -l %OutputLanguage% -v us\%FilePath%\%FileName%.tok pseudo\%FilePath%\%FileName%.tok
  12. lcbat.exe -f BVTlogs\%FilePath%\%FileName%.xml -m %mapinf% -l %OutputLanguage% -v us\%FilePath%\%FileName%.tok pseudo\%FilePath%\%FileName%.tok
  13. )
  14. popd
  15. :end