Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nothing happen when I click RunCat.exe | 双击 RunCat.exe 后没有任何反应 #73

Open
SaarChaffee opened this issue Dec 6, 2021 · 19 comments

Comments

@SaarChaffee
Copy link

My Windows version is 19042.1348, and I have installed .NET 5.0 SDK v5.0.403 which include .NET Runtime 5.0.12.
I have tried to change my .NET Runtime to 5.0.0, and it still nothing running.

@Aarmii
Copy link

Aarmii commented Dec 9, 2021

我是windows11,运行RunCat_with_.NET5.0/RunCat.exe没有任何反应

@SaarChaffee
Copy link
Author

带了.net5.0的也试了我也不行

@xuxifan
Copy link

xuxifan commented Dec 10, 2021 via email

@yunghahn
Copy link

I found a solution.

Go to 1.9 verson, click assets, and download first one.

I am using win11.

Hope it might help.

@ChenMathilda
Copy link

ChenMathilda commented Dec 15, 2021

I found a solution.

Go to 1.9 verson, click assets, and download first one.

I am using win11.

Hope it might help.

It works on my Win10 PC!!!
Thanks!

@sfantree
Copy link

sfantree commented Jan 1, 2022

Click and Nothing run, or I try to build with compatibility. you can try #84

@alexya
Copy link

alexya commented Jan 30, 2022

@yunghahn Yes, 1.9 version can work on my win10 PC LTSC 1809 Build 17763.2452

@Aya-X
Copy link

Aya-X commented Mar 28, 2022

I found a solution.

Go to 1.9 verson, click assets, and download first one.

I am using win11.

Hope it might help.

It work for my Win10, many thanks!

somnisomni added a commit to somnisomni/RunCat-Windows that referenced this issue Jun 28, 2022
somnisomni added a commit to somnisomni/RunCat-Windows that referenced this issue Jun 28, 2022
@greenhandatsjtu
Copy link
Contributor

greenhandatsjtu commented Jul 11, 2022

Maybe you can try RunCat-with-dotnet6-x64.zip in latest release 2.0, it now works well on my computer (Windows 11, both 1.10 and 1.11 don't run on it).

@SaarChaffee
Copy link
Author

SaarChaffee commented Jul 11, 2022

Maybe you can try RunCat-with-dotnet6-x64.zip in latest release 2.0, it now works well on my computer (Windows 11, both 1.10 and 1.11 don't run on it).

I'm sorry that it still doesn't work correctly on my computer (Win 10 21H1 19043.1806).

And this is the Windows logs in Computer Management.
image
image
Translated by Google:
Faulting Application Name: RunCat.exe, Version: 2.0.0.0, Timestamp: 0x6283da22
Faulting module name: KERNELBASE.dll, version: 10.0.19041.1806, timestamp: 0x91c56ed8
Exception code: 0xe0434352
Error offset: 0x0000000000034fd9
Bad process ID: 0x8ee0
Bad application launch time: 0x01d895301080b5a9
Faulting Application Path: E:\RunCat-with-dotnet6-x64\RunCat.exe
Faulting module path: C:\WINDOWS\System32\KERNELBASE.dll
Report ID: bc00ab76-27f8-49ea-b648-7a387fc971c4
Error package full name:
Bad package relative application ID:

@SaarChaffee
Copy link
Author

Maybe you can try RunCat-with-dotnet6-x64.zip in latest release 2.0, it now works well on my computer (Windows 11, both 1.10 and 1.11 don't run on it).

Looks like the problem becomes that it can't get my computer name.

@greenhandatsjtu
Copy link
Contributor

greenhandatsjtu commented Jul 11, 2022

Maybe you can try RunCat-with-dotnet6-x64.zip in latest release 2.0, it now works well on my computer (Windows 11, both 1.10 and 1.11 don't run on it).

Looks like the problem becomes that it can't get my computer name.

Hi @SaarChaffee , it seems like a known issue of Windows registry, you can refer to #19 for details, this link may be helpful.

@SaarChaffee
Copy link
Author

SaarChaffee commented Jul 11, 2022

Maybe you can try RunCat-with-dotnet6-x64.zip in latest release 2.0, it now works well on my computer (Windows 11, both 1.10 and 1.11 don't run on it).

Looks like the problem becomes that it can't get my computer name.

Hi @SaarChaffee , it seems like a known issue of Windows registry, you can refer to #19 for details, this link may be helpful.

Oh I just solved this problem! This is caused by an abnormal shutdown of the computer, such as a sudden power failure, so
need to reset the performance counters. And this is my solution to the problem:

  • open the PowerShell with Administrator permission
  • go to the C:\Windows\System32 (x86) or C:\Windows\SysWOW64 (x64)
  • write lodctr /r and reboot the computer
  • and now it works

And I also saw another solution with one more step:

  • Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }
  • lodctr /r
  • reboot

@greenhandatsjtu
Copy link
Contributor

Glad to hear that! Hope you enjoy RunCat :)

@SaarChaffee
Copy link
Author

Glad to hear that! Hope you enjoy RunCat :)

thanks a lot

@SaarChaffee SaarChaffee changed the title Nothing happen when I click RunCat.exe Nothing happen when I click RunCat.exe | 双击 RunCat.exe 后没有任何反应 Jul 11, 2022
@SaarChaffee
Copy link
Author

计算机管理 里的 事件查看器-Windows日志-应用程序 中如果看到错误日志说 System.InvalidOperationException: Cannot load Counter Name data because an invalid index '' was read from the registry. Performance counters on the machine may need to be repaired.,这个是电脑意外断电或别的原因导致的不正常关机引起的性能计数器没办法使用,可以用下面的办法解决:

  • 用管理员运行 PowerShell
  • 进入 C:\Windows\System32 (32位系统)或者 C:\Windows\SysWOW64 (64位系统)
  • 输入 lodctr /r
  • 重启电脑

如果上面的还不能解决,那么重新到刚才的路径中

  • 输入Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }
  • 然后再 lodctr /r
  • 重启电脑

@greenhandatsjtu
Copy link
Contributor

Glad to hear that! Hope you enjoy RunCat :)

Maybe you can pin this issue to the top, I will translate the title and solution into Chinese.

Oh sorry, I'm just a contributor, let's ask @Kyome22 for his opinion

@SaarChaffee
Copy link
Author

SaarChaffee commented Jul 11, 2022

Glad to hear that! Hope you enjoy RunCat :)

Maybe you can pin this issue to the top, I will translate the title and solution into Chinese.

Oh sorry, I'm just a contributor, let's ask @Kyome22 for his opinion

刚看到哈哈哈,下意识就这么说了

@Nicolasking007
Copy link

非常感谢 解决问题

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

10 participants