How to disable PDB load?

hi

i looked into IDA options but i couldn’t find pdb settings. every time i attach to my target, IDA tries loading PDB files for dll; it makes UI nonresponsive and clicking the cancel takes a minute or two.
how can i disable it or tell IDA to only load specific pdb files.

Hello,

You probably checked “don’t ask again” at some point when IDA was prompting you whether to load the PDB. Please see Igor’s tip of the week #78: Auto-hidden messages – Hex Rays

Additionally, you can look for pdb.cfg, for PDB-specific configuration.

Here is a snippet taken from that file:

// PDB information provider
#define PDB_PROVIDER_MSDIA  1   // use MSDIA local/remote provider
#define PDB_PROVIDER_PDBIDA 2   // use PDBIDA provider
//PDB_PROVIDER = PDB_PROVIDER_PDBIDA

// it is possible to specify the desired provider in the command line:
//      ida -Opdb:off input_file
//      ida -Opdb:msdia input_file
//      ida -Opdb:pdbida input_file