Vendor symchk script directly into ToolsY

This commit is contained in:
2021-12-21 11:15:41 +11:00
parent d3bb928726
commit 5aab09dc2f
2 changed files with 1 additions and 8 deletions
@@ -1,19 +0,0 @@
@echo off
set dest_dir="%~dp0Windows_Symbols_PDBs"
set symchk="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\symchk.exe"
if "%~1"=="" goto :usage
if not exist %symchk% (
echo Symchk binary not found but is required to run script [path=%symchk%]
exit /b 1
)
goto :eof
if not exist %dest_dir% mkdir %dest_dir%
echo Downloading to %dest_dir% with %symchk%
%symchk% /r "%1" /s srv*%dest_dir%*https://msdl.microsoft.com/download/symbols
goto :eof
:usage
echo Usage: download_windows_symbol_pdb.bat executable_to_check