Source code of Windows XP (NT5)
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.

30 lines
424 B

  1. @echo off
  2. setlocal
  3. if %PROCESSOR_ARCHITECTURE% == x86 goto i386
  4. if %PROCESSOR_ARCHITECTURE% == MIPS goto mips
  5. if %PROCESSOR_ARCHITECTURE% == ALPHA goto alpha
  6. if %PROCESSOR_ARCHITECTURE% == PPC goto ppc
  7. :i386
  8. set cfgdir=i386
  9. goto endit
  10. :mips
  11. set cfgdir=mips
  12. goto endit
  13. :alpha
  14. set cfgdir=alpha
  15. goto endit
  16. :ppc
  17. set cfgdir=ppc
  18. goto endit
  19. :endit
  20. rundll32 shell32.dll,Control_RunDLL obj\%cfgdir%\faxcfg.cpl
  21. endlocal