-2

I have been trying to debug a program in Visual Studio on my Windows 10, but the following message appeared:

Error 1  fatal error LNK1201: error writing to program database 'C:\Users\Usu rio\Documents\Visual Studio 2005\Projects\Console3\Console3\debug\console3.pdb'; check for insufficient disk space, invalid path, or insufficient privilege

What I could do?

egor.zhdan
  • 4,555
  • 6
  • 39
  • 53

1 Answers1

0

You can try these steps:

  1. From Build menu, select Clean Solution. It will clean all debug symbols and program debug information.

  2. Then select Rebuild Solution from the same menu. It will rebuild the solution, starting from a fresh cooy of PDB.

shahsani
  • 687
  • 7
  • 16