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
435 B

@echo off
setlocal
if %PROCESSOR_ARCHITECTURE% == x86 goto i386
if %PROCESSOR_ARCHITECTURE% == MIPS goto mips
if %PROCESSOR_ARCHITECTURE% == ALPHA goto alpha
if %PROCESSOR_ARCHITECTURE% == PPC goto ppc
:i386
set cfgdir=i386
goto endit
:mips
set cfgdir=mips
goto endit
:alpha
set cfgdir=alpha
goto endit
:ppc
set cfgdir=ppc
goto endit
:endit
rundll32 shell32.dll,Control_RunDLL obj\%cfgdir%\faxcfg.cpl,Fax Server
endlocal