What happened to explorer search? Unable to paste the copied
file name to search for as it was in previous versions. I have to
manually type the file name and press Enter. This is terrible! Why does Microsoft only make things worse with each new version ?!
Not a Microsoft Adivor, but I am a long-term computer user. There is a workaround that might help at least some of you who are struggling until they fix it. It's how I've had to do a bunch of searches since this problem started, and that's go back to DOS :p. Searching within a file is much more complicated, but searching for a specific filename or filetype, even down the tree, is covered.
Open a Command Prompt -
Right click the Windows sign
Select Run
Type "cmd" (without the quotes) in the box.
Some things you might find handy In the Command Prompt (and you can always search the Web for more)-
Type:
cd " then paste the path from the Windows Explorer address bar and close the " - The prompt will go to that folder.
dir "filename.extension" - Use the quotes to protect against spaces in the filename being misinterpreted.
dir "*file*" - You can also use * for wildcard searches
dir "*.jpg"
dir "*.jpg" /s - Search down the directory tree from where you started.
dir "*.jpg" /s >mysearch.log - Puts the results into a text file if more than a few are expected so they don't scroll offscreen.
Ideally, they'll fix it soon, but if rolling back isn't an option, I hope this helps. Between the logging and the speed, I used these before the bug, so had them to fall back on. Copy and paste with both click and Control-V still work in DOS.
Cheers,
Margaret