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.
15 lines
404 B
15 lines
404 B
@ECHO OFF
|
|
|
|
setlocal enableDelayedExpansion
|
|
set SN="c:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\sn.exe"
|
|
|
|
echo. > sn_dump.txt
|
|
for /F %%x in ('dir /B/D *.DLL') do (
|
|
echo. >> sn_dump.txt
|
|
echo ==================================================================== >> sn_dump.txt
|
|
echo. >> sn_dump.txt
|
|
echo Working on %%x >> sn_dump.txt
|
|
echo. >> sn_dump.txt
|
|
%SN% -Tp %%x >> sn_dump.txt
|
|
)
|
|
|
|
|