mirror of https://github.com/tongzx/nt5src
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
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
|