Thursday, August 13, 2020

When you type a command and opens Windows Store or another

 

>PROBLEM

For instance, on console, you type python and opens instead Windows Store panel or another program.


>SOLUTION

- Go to:

C:\Users\your_user_login_here\AppData\Local\Microsoft\WindowsApps


- Possibly, there is an equivalent command shadowing the one you really wish.

Delete it or rename it.
That's it.



No comments:

Post a Comment

eclipse: java: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder" or Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

  >PROBLEM Using Eclipse, you try to run a simple logging test using "org.slf4j.Logger" like the sample below: package Test; im...