Are they useful for normal computer operation?
Why everytime I login to my PC, I see new SQM files created in my C drive?
The answer is here:
SQM means Software Quality Management. SQM files are created in your C drive by Windows live messenger/ MSN Messenger - a microsoft product. These files are being used by Microsoft for their Quality management purpose.
Deleting these files is totally harmless. It won't affect your computer.
Create a batch file, name it delsqm.bat. Put this batchfile in your start up directory. Default is C:\Documents and Settings\All Users\Start Menu\Programs\Startup.
Put the following code in the batch file:
@ECHO OFF
@ECHO Fast SQM File Seek and Destroy
@ECHO This is safe.
pause
attrib -r -s -h -a C:\*.sqm
DEL C:\*.SQM
@ECHO Done!
pause
This will resolve this annoying issue.
No comments:
Post a Comment
Please give your feedback, questions and suggestions. I will surely answer you.