Recently I noticed that when downloading symbols from Microsoft symbol store using SymChk it brings DLLs as well as PDBs. I'm wondering if it is possible to store both binaries and symbols using standard microsoft tools like SymChk/SymStore?
How to store debug symbols and binaries side-by-side
319 views Asked by kreuzerkrieg At
1
There are 1 answers
Related Questions in DBGHELP
- Is it possible to get address of global variable with symFromName
- How to precisely append specific heap memory region into a custom crash dump via MiniDumpWriteDump API in DbgHelp library?
- Diagnose BEX event, exception code 0xC0000409 (STATUS_STACK_BUFFER_OVERRUN)
- How to use DbgHelpCreateUserDump?
- Unable to get Windows symbols from the public symbols server using an x64 application
- PSRCCODEINFO obtained with SymEnumLine has Address with few extra bytes
- Cancel downloading symbols in Debug Help Library
- why dbghelp cannot resolve symbol from managed callstack?
- Verify symbol server is valid
- How to obtain both managed(dotnet) and native(C++) callstack of my project by dbghelp?
- Why does SymInitialize() invoke CreateFile()?
- No module information in minidump on win 11
- DbgHelp vs DbgEng vs DIA SDK in regards to thread safety
- best practice to use dbghelp with your application
- Cannot get SymGetTypeInfo to work (error 1, Incorrect function)
Related Questions in SYMBOL-SERVER
- Unable to debug package from private Azure Repo
- Pushing nuget symbol packages to Artifactory removes ".symbols." from the package name and overwrites the regular package
- Nuget Symbol Server in Visual Studio with ARtifactory is not working
- In the Azure Pipelines PublishSymbols task, how can I use a variable as the searchPattern parameter?
- In the Azure Pipelines PublishSymbols task, how to specify multiple search patterns?
- ERROR_WINHTTP_NAME_NOT_RESOLVED when using dbghelp as a service
- How to have Visual Studio 2015 cope with Microsoft's 2019 symbol server upgrade?
- Debug NuGet package using Azure Devops Symbole Server resulting to class not found
- Source link can't download source files for nuget from private azure symbol server, uses wrong domain dev.azure.com/raw/
- Linux Hosted Agents and Azure Artifacts (Symbols Publishing)
- Azure DevOps SourceLink and Symbol Server with Release DLL in Nuget package
- Store and manage multiple PDB files?
- Where does Visual Studio get the hash for my DLL for looking up symbols?
- Cannot find Symbol Source code when debugging Nuget package
- Allow Microsoft symbol server through firewall
Related Questions in SYMSTORE
- SymProxy not going to microsoft symbol server to find symbols
- Is it safe to delete SymStore's deleted transaction files?
- Microsoft Symbol Server - Deleting Old content
- Symstore does not delete associated folders
- Give Azure Build Agent Write Permission to VM Folder
- SymStore - add multiple files
- Using ssindex / svnindex fails : "Unable to resolve directory"
- How can I migrate from a Microsoft Symbol Server to Google Breakpad?
- symstore error: Couldn't create "...\000Admin\0000000001". Win32 error 80: The file exists"
- How to move or backup symbol server?
- Using symstore.exe cannot load symbols for minidump in Windbg or Visual Studio
- Is it safe to remove .pdb directory from a symbol storage if I don't use them anymore?
- Symbol server for .NET application
- Can WinDBG be made to find mscordacwks.dll in the symbol store?
- How to store debug symbols and binaries side-by-side
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The answer was pretty obvious. Just do not mention the extension you want to add. for example, instead of using:
add /r /f "\buildserver\buildresults*.pdb" /s "\fileserver\R&D\Artifacts\Symbols\" /c "Adding production symbols" /t "server symbols" /v "1.0.0.1"
use:
add /r /f "\buildserver\buildresults*.*" /s "\fileserver\R&D\Artifacts\Symbols\" /c "Adding production symbols" /t "server symbols" /v "1.0.0.1"