0
点赞
收藏
分享

微信扫一扫

解决Windows应用程序Side-by-Side错误


error:

The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail.

 

亲测ok

步骤

  1. windows + r 然后输入cmd,回车打开
  2. 输入 sxstrace trace -logfile:C:/trace.bin
  3. 然后打开自己的应用程序
  4. 弹出错误框 确定
  5. sxstrace parse -logfile:C:/trace.bin -outfile:C:/trace.log (因为sxstrace trace出来的文件是二进制的,所以用上述命令将其转换成txt的。)
  6. 打开trace.log,根据提示修改就ok了

 


举报

相关推荐

0 条评论