Delete all hidden Mac junk files in Windows (Like .DS_STORE)
If you use a Mac and Windows together, you’re likely to end up with a bunch of hidden .DS_STORE files all over your Windows drives. You can easily search and destroy them all using this command: (Open the command line first of course. You can do this by mashing Win + R, then typing “cmd”. Or just type “cmd” in the Start Menu search box.) del /s /q /f /a .DS_STORE That will find every instance of this Mac resource file and delete it. Good times. But wait there’s more. In addition to DS_STORE, OSX will also put a bunch of other junk every where starting with “._”. Kill those like this. del /s /q /f /a ._.* (Why not use “ ._* '” instead? Apparently, you can sweep up legit files from other things such as Chrome by doing that. Thanks commenters.) Important note! This will only search inside the folder you’re in, as well as every folder below that. So, if you wanted to search and clean an entire drive, make sure you’re in the root folder. Get there with this:cd \ You could