Win10 C Disk Cleanup Rubbish Clean up the garbage files generated by Visual Studio2010

Clean up the junk files generated by Visual Studio2010

IntelliTrace.exe, this intelligent trace, although accelerating the debugging speed, but also produced a disadvantage: it caused insufficient C drive space. If you do n’t enable it, the debugging speed will definitely slow down; if you enable it, you ca n’t end the process one by one.

In order to fundamentally solve the problem, let's remove the intelligent tracking option, the solution:

VS2010-> Tools-> Options-> IntelliTrance-> Uncheck "Enable IntelliTrace"-> OK

Click Advanced, find the location of the record, copy the file path, locate the corresponding folder, and find the source of the problem

It turns out there is such a folder for storing files that can only be tracked, and then right-click to see the file size, even 9G.

 

What are the files stored in this folder? .iTrance file, that is, debug intelligent trace file. Delete all the files in the TraceDebugging folder and you are done! Of course, if smart tracking is turned on, it is necessary to clean this folder regularly.

IntelliTrace.exe, this intelligent trace, although accelerating the debugging speed, but also produced a disadvantage: it caused insufficient C drive space. If you do n’t enable it, the debugging speed will definitely slow down; if you enable it, you ca n’t end the process one by one.

In order to fundamentally solve the problem, let's remove the intelligent tracking option, the solution:

VS2010-> Tools-> Options-> IntelliTrance-> Uncheck "Enable IntelliTrace"-> OK

Click Advanced, find the location of the record, copy the file path, locate the corresponding folder, and find the source of the problem

It turns out there is such a folder for storing files that can only be tracked, and then right-click to see the file size, even 9G.

 

What are the files stored in this folder? .iTrance file, that is, debug intelligent trace file. Delete all the files in the TraceDebugging folder and you are done! Of course, if smart tracking is turned on, it is necessary to clean this folder regularly.

Guess you like

Origin www.cnblogs.com/Alex80/p/12745719.html