What is the keilkill.bat file for?

foreword

When we use kei software, we often encounter this kind of situation: the project file modified in your computer is inexplicably simulated or cannot be compiled in the teammate’s computer, so how to solve it at this time?

reason

 It may be that the process file generated in your computer does not match the computer file of your teammates, which caused the crash.

Solution

Double-click the keilkill.bat file, return to the keil software and compile the project again.

Supplementary knowledge

keilkill.bat is a batch file in the Keil software development environment (MDK-ARM). Its function is to stop the process that occupies the Keil software resources, so as to restart the Keil software or release system resources.

Specifically, when the Keil software is abnormal or crashes during compilation, debugging, or simulation, some resource-occupied processes may not be shut down normally, resulting in failure to restart the Keil software or affecting the normal operation of the system. At this point, you can run the keilkill.bat file, which will automatically close all processes that occupy Keil software resources, so as to restart Keil software or release system resources.

It should be noted that the keilkill.bat file can only close the process that occupies Keil software resources, and has no effect on other processes or system resources. At the same time, before running the keilkill.bat file, you need to save the data of the current Keil software project to avoid data loss or damage.

Guess you like

Origin blog.csdn.net/weixin_62261692/article/details/130791971