How to Uninstall Windows 10’s Built-in Apps for all users
It is possible to uninstall Win10 preinstalled (built-in) via powershell in admin mode. The generic command to remove APP_NAME is: get-appxpackage -allusers APP_NAME| remove-appxpackage To remove the app only for the current user remove the srting “‘allusers”. Credits: A deeper…
[Shell] How to remove all empty directories in a sub-tree?
Using shell, both in Linux or in Windows Sub-system for Linux [WSL], you can remove all the empty directories in a folder or hard drive and in all the sub-folders. Short answer: open your terminal and navigate into the top…