Delete Windows files that match a filename pattern with “Everything”

Everything is a tool I use daily to replace Windows search, which is painfully slow. In addition to indexing files by name, it allows you to run normal file operations on the resulting list.

I ended up with thousands of files starting with “._” after a OneDrive migration. The eventual solution (after looking for CMD commands) was to just use Everything to search, select all the files, right-click, and select “Delete.”

Screenshot of Everything and a dialog box asking me if I want to delete files.

pip3 with Conda (if you still have Python 2.7 in your Windows PATH)

If you want to use pip3 with your Anaconda Python 3 installation, you can copy pip.exe and pip-script.py in [Python 3]/Scripts/ to pip3.exe and pip3-script.py in the same folder. These will then show up in your PATH, so running pip3 install [x] will now work, and running pip install [x] will still work for your Python 2 installation.

It seems like you can do a similar thing with conda, if you are forced to install it for Spyder. Rename conda.exe, conda-env.exe, etc. and add [Python 2 Miniconda]/Scripts to your path.

(Thanks to Neil D. for the tip!)