First of all, this document is just a recompilation of different resources that already existed on the web previously that I personally tested some ones did work and other not. I liked the idea to make a full guide from start to end so all of you could also enjoy playing with cool-retro-term on windows 10. Personally I installed it on a windows 10 pro version. Fingers crossed!
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM reseticoncache.bat | |
REM A basic script to reset the icon cache in Windows 10/11 | |
taskkill /im explorer.exe /f | |
cd /d %userprofile%\appdata\local | |
attrib -h -r -s iconcache.db | |
attrib -h -r -s iconcache* | |
del iconcache.db /q | |
del iconcache* |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Install [Termux](https://termux.com/), an Android terminal emulator that provides a Linux execution environment and various tools. | |
2. Update system packages in Termux: | |
```sh | |
$ pkg update -y | |
``` | |
<img src="https://imgur.com/Btpla5P.png" width="200"> |