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.
 
 
 
 
 
 

45 lines
769 B

@echo off
rem %1 is the node name of the image and
rem %1 is the extension of the image.
if "%2" == "" (
echo S2D: [node name] [extension]
echo EXAMPLE: s2d kernel32 dll
goto end
)
del /q %1.cv
del /q %1.dbg
echo.
echo S2D: confirming files...
matchsym %1.%2 %1.sym
echo.
echo.
echo S2D: creating %1.cv...
symedit X -o%1.cv %1.sym
echo.
echo S2D: saving off original image
copy %1.%2 %1.%2.sav
echo.
echo S2D: adding cv info to %1.%2
cvtodbg %1.%2 %1.cv
echo.
echo S2D: generating dbg file
splitsym %1.%2
echo.
echo S2D: restoring original image
copy %1.%2.sav %1.%2
goto end
echo
%* d:\drop\symedit S %1.sym o %1.cv %1.%2
:end